Title: [188232] trunk/Source/WebKit2
Revision
188232
Author
wei...@apple.com
Date
2015-08-10 15:09:22 -0700 (Mon, 10 Aug 2015)

Log Message

Try to fix the 32-bit build.

* UIProcess/API/mac/WKViewInternal.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (188231 => 188232)


--- trunk/Source/WebKit2/ChangeLog	2015-08-10 21:54:36 UTC (rev 188231)
+++ trunk/Source/WebKit2/ChangeLog	2015-08-10 22:09:22 UTC (rev 188232)
@@ -1,3 +1,9 @@
+2015-08-10  Sam Weinig  <s...@webkit.org>
+
+        Try to fix the 32-bit build.
+
+        * UIProcess/API/mac/WKViewInternal.h:
+
 2015-08-08  Sam Weinig  <s...@webkit.org>
 
         Replace WebPageConfiguration with API::PageConfiguration and expose a C-SPI accessor for it

Modified: trunk/Source/WebKit2/UIProcess/API/mac/WKViewInternal.h (188231 => 188232)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKViewInternal.h	2015-08-10 21:54:36 UTC (rev 188231)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKViewInternal.h	2015-08-10 22:09:22 UTC (rev 188232)
@@ -68,7 +68,9 @@
 #endif
 
 @interface WKView ()
-- (instancetype)initWithFrame:(CGRect)frame processPool:(WebKit::WebProcessPool&)processPool configuration:(Ref<API::PageConfiguration>&&)configuration webView:(WKWebView *)webView;
+#if WK_API_ENABLED
+- (instancetype)initWithFrame:(NSRect)frame processPool:(WebKit::WebProcessPool&)processPool configuration:(Ref<API::PageConfiguration>&&)configuration webView:(WKWebView *)webView;
+#endif
 
 - (std::unique_ptr<WebKit::DrawingAreaProxy>)_createDrawingAreaProxy;
 - (BOOL)_isFocused;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to