Title: [192189] trunk/Source/WebKit2
Revision
192189
Author
ander...@apple.com
Date
2015-11-09 16:36:14 -0800 (Mon, 09 Nov 2015)

Log Message

Fix 32-bit build.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (192188 => 192189)


--- trunk/Source/WebKit2/ChangeLog	2015-11-10 00:30:29 UTC (rev 192188)
+++ trunk/Source/WebKit2/ChangeLog	2015-11-10 00:36:14 UTC (rev 192189)
@@ -1,5 +1,12 @@
 2015-11-09  Anders Carlsson  <ander...@apple.com>
 
+        Fix 32-bit build.
+
+        * Shared/API/Cocoa/RemoteObjectRegistry.mm:
+        (WebKit::RemoteObjectRegistry::callReplyBlock):
+
+2015-11-09  Anders Carlsson  <ander...@apple.com>
+
         Add reply blocks to _WKRemoteObjectInterface similar to NSXPCConnection
         https://bugs.webkit.org/show_bug.cgi?id=151056
         rdar://problem/23222609

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


--- trunk/Source/WebKit2/Shared/API/Cocoa/RemoteObjectRegistry.mm	2015-11-10 00:30:29 UTC (rev 192188)
+++ trunk/Source/WebKit2/Shared/API/Cocoa/RemoteObjectRegistry.mm	2015-11-10 00:36:14 UTC (rev 192189)
@@ -63,7 +63,9 @@
 
 void RemoteObjectRegistry::callReplyBlock(uint64_t replyID, const UserData& blockInvocation)
 {
+#if WK_API_ENABLED
     [m_remoteObjectRegistry _callReplyWithID:replyID blockInvocation:blockInvocation];
+#endif
 }
 
 } // namespace WebKit
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to