Title: [160788] trunk/Source/WebKit2
Revision
160788
Author
[email protected]
Date
2013-12-18 12:37:31 -0800 (Wed, 18 Dec 2013)

Log Message

Fix 32-bit build.

* Shared/API/Cocoa/RemoteObjectRegistry.mm:
(WebKit::RemoteObjectRegistry::invokeMethod):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (160787 => 160788)


--- trunk/Source/WebKit2/ChangeLog	2013-12-18 20:20:55 UTC (rev 160787)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-18 20:37:31 UTC (rev 160788)
@@ -1,5 +1,12 @@
 2013-12-18  Anders Carlsson  <[email protected]>
 
+        Fix 32-bit build.
+
+        * Shared/API/Cocoa/RemoteObjectRegistry.mm:
+        (WebKit::RemoteObjectRegistry::invokeMethod):
+
+2013-12-18  Anders Carlsson  <[email protected]>
+
         Make WKObjectRegistry objects be per page
         https://bugs.webkit.org/show_bug.cgi?id=125937
 

Modified: trunk/Source/WebKit2/Shared/API/Cocoa/RemoteObjectRegistry.mm (160787 => 160788)


--- trunk/Source/WebKit2/Shared/API/Cocoa/RemoteObjectRegistry.mm	2013-12-18 20:20:55 UTC (rev 160787)
+++ trunk/Source/WebKit2/Shared/API/Cocoa/RemoteObjectRegistry.mm	2013-12-18 20:37:31 UTC (rev 160788)
@@ -50,7 +50,9 @@
 
 void RemoteObjectRegistry::invokeMethod(const UserData& invocation)
 {
+#if WK_API_ENABLED
     [m_remoteObjectRegistry _invokeMethod:invocation];
+#endif
 }
 
 } // namespace WebKit
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to