Title: [233400] trunk/Source/WebKit
Revision
233400
Author
mcatanz...@igalia.com
Date
2018-06-30 11:44:34 -0700 (Sat, 30 Jun 2018)

Log Message

Unreviewed, add missing PLATFORM(COCOA) guard after r233207
https://bugs.webkit.org/show_bug.cgi?id=186788
<rdar://problem/41094167>

* WebProcess/InjectedBundle/API/c/WKBundle.cpp:
(WKBundleExtendClassesForParameterCoder):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (233399 => 233400)


--- trunk/Source/WebKit/ChangeLog	2018-06-30 18:07:43 UTC (rev 233399)
+++ trunk/Source/WebKit/ChangeLog	2018-06-30 18:44:34 UTC (rev 233400)
@@ -1,3 +1,12 @@
+2018-06-30  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, add missing PLATFORM(COCOA) guard after r233207
+        https://bugs.webkit.org/show_bug.cgi?id=186788
+        <rdar://problem/41094167>
+
+        * WebProcess/InjectedBundle/API/c/WKBundle.cpp:
+        (WKBundleExtendClassesForParameterCoder):
+
 2018-06-30  Dan Bernstein  <m...@apple.com>
 
         Added a missing availability attribute.

Modified: trunk/Source/WebKit/WebProcess/InjectedBundle/API/c/WKBundle.cpp (233399 => 233400)


--- trunk/Source/WebKit/WebProcess/InjectedBundle/API/c/WKBundle.cpp	2018-06-30 18:07:43 UTC (rev 233399)
+++ trunk/Source/WebKit/WebProcess/InjectedBundle/API/c/WKBundle.cpp	2018-06-30 18:44:34 UTC (rev 233400)
@@ -297,7 +297,7 @@
 
 void WKBundleExtendClassesForParameterCoder(WKBundleRef bundle, WKArrayRef classes)
 {
-#if WK_API_ENABLED
+#if PLATFORM(COCOA) && WK_API_ENABLED
     auto classList = WebKit::toImpl(classes);
     if (!classList)
         return;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to