Title: [228307] trunk/Source/WebKit
Revision
228307
Author
[email protected]
Date
2018-02-08 18:13:18 -0800 (Thu, 08 Feb 2018)

Log Message

Remove WebProcessPool::platformInitialize stub.
https://bugs.webkit.org/show_bug.cgi?id=182621

Reviewed by Alex Christensen.

The #if here could be simplified to PLATFORM(WIN), but Windows too will need a proper implementation
as part of WK2 support, so this stub shouldn't need to exist at all.

* UIProcess/WebProcessPool.cpp:
(WebKit::WebProcessPool::platformInitialize): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (228306 => 228307)


--- trunk/Source/WebKit/ChangeLog	2018-02-09 02:13:01 UTC (rev 228306)
+++ trunk/Source/WebKit/ChangeLog	2018-02-09 02:13:18 UTC (rev 228307)
@@ -1,3 +1,16 @@
+2018-02-08  Ross Kirsling  <[email protected]>
+
+        Remove WebProcessPool::platformInitialize stub.
+        https://bugs.webkit.org/show_bug.cgi?id=182621
+
+        Reviewed by Alex Christensen.
+
+        The #if here could be simplified to PLATFORM(WIN), but Windows too will need a proper implementation
+        as part of WK2 support, so this stub shouldn't need to exist at all.
+
+        * UIProcess/WebProcessPool.cpp:
+        (WebKit::WebProcessPool::platformInitialize): Deleted.
+
 2018-02-08  Michael Catanzaro  <[email protected]>
 
         TestController should not exercise cocoa-specific resource load statistics APIs

Modified: trunk/Source/WebKit/UIProcess/WebProcessPool.cpp (228306 => 228307)


--- trunk/Source/WebKit/UIProcess/WebProcessPool.cpp	2018-02-09 02:13:01 UTC (rev 228306)
+++ trunk/Source/WebKit/UIProcess/WebProcessPool.cpp	2018-02-09 02:13:18 UTC (rev 228307)
@@ -283,12 +283,6 @@
     notifyThisWebProcessPoolWasCreated();
 }
 
-#if !PLATFORM(COCOA) && !PLATFORM(GTK) && !PLATFORM(WPE)
-void WebProcessPool::platformInitialize()
-{
-}
-#endif
-
 WebProcessPool::~WebProcessPool()
 {
     bool removed = processPools().removeFirst(this);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to