Title: [173933] trunk/Source/WebKit2/UIProcess
Revision
173933
Author
[email protected]
Date
2014-09-24 14:41:06 -0700 (Wed, 24 Sep 2014)

Log Message

Fix 32-bit Mac build.

Modified Paths


Diff

Modified: trunk/Source/WebKit2/UIProcess/API/C/mac/WKInspectorPrivateMac.h (173932 => 173933)


--- trunk/Source/WebKit2/UIProcess/API/C/mac/WKInspectorPrivateMac.h	2014-09-24 21:25:22 UTC (rev 173932)
+++ trunk/Source/WebKit2/UIProcess/API/C/mac/WKInspectorPrivateMac.h	2014-09-24 21:41:06 UTC (rev 173933)
@@ -37,6 +37,7 @@
 // actions that need to work when the Web Inspector window is key.
 WK_EXPORT @interface WKWebInspectorProxyObjCAdapter : NSObject <NSWindowDelegate> {
     void* _inspectorProxy;
+    BOOL _ignoreNextInspectedViewFrameDidChange;
 }
 
 @property (readonly) WKInspectorRef inspectorRef;

Modified: trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm (173932 => 173933)


--- trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm	2014-09-24 21:25:22 UTC (rev 173932)
+++ trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm	2014-09-24 21:41:06 UTC (rev 173933)
@@ -82,9 +82,7 @@
 // WKWebInspectorProxyObjCAdapter is a helper ObjC object used as a delegate or notification observer
 // for the sole purpose of getting back into the C++ code from an ObjC caller.
 
-@interface WKWebInspectorProxyObjCAdapter () {
-    BOOL _ignoreNextInspectedViewFrameDidChange;
-}
+@interface WKWebInspectorProxyObjCAdapter ()
 
 - (id)initWithWebInspectorProxy:(WebInspectorProxy*)inspectorProxy;
 - (void)close;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to