Title: [228502] trunk/Source/WebKit
Revision
228502
Author
ross.kirsl...@sony.com
Date
2018-02-14 18:55:57 -0800 (Wed, 14 Feb 2018)

Log Message

Default definition of InjectedBundle::PlatformBundle should not be Windows-specific.
https://bugs.webkit.org/show_bug.cgi?id=182810

Reviewed by Michael Catanzaro.

This branch was added in r228455, but should not be limited to OS(WINDOWS).

* WebProcess/InjectedBundle/InjectedBundle.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (228501 => 228502)


--- trunk/Source/WebKit/ChangeLog	2018-02-15 02:52:50 UTC (rev 228501)
+++ trunk/Source/WebKit/ChangeLog	2018-02-15 02:55:57 UTC (rev 228502)
@@ -1,5 +1,16 @@
 2018-02-14  Ross Kirsling  <ross.kirsl...@sony.com>
 
+        Default definition of InjectedBundle::PlatformBundle should not be Windows-specific.
+        https://bugs.webkit.org/show_bug.cgi?id=182810
+
+        Reviewed by Michael Catanzaro.
+
+        This branch was added in r228455, but should not be limited to OS(WINDOWS).
+
+        * WebProcess/InjectedBundle/InjectedBundle.h:
+
+2018-02-14  Ross Kirsling  <ross.kirsl...@sony.com>
+
         Default implementations of nativeEvent() should be platform-agnostic.
         https://bugs.webkit.org/show_bug.cgi?id=182806
 

Modified: trunk/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.h (228501 => 228502)


--- trunk/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.h	2018-02-15 02:52:50 UTC (rev 228501)
+++ trunk/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.h	2018-02-15 02:55:57 UTC (rev 228502)
@@ -62,7 +62,7 @@
 typedef NSBundle *PlatformBundle;
 #elif USE(GLIB)
 typedef ::GModule* PlatformBundle;
-#elif OS(WINDOWS)
+#else
 typedef void* PlatformBundle;
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to