Title: [208941] trunk/Source/WebKit2
Revision
208941
Author
[email protected]
Date
2016-11-21 01:24:45 -0800 (Mon, 21 Nov 2016)

Log Message

Remove m_customProtocolManagerProxy from WebProcessProxy
https://bugs.webkit.org/show_bug.cgi?id=164908

Reviewed by Andreas Kling.

Since the network process is mandatory, the custom protocol manager proxy of WebProcessProxy is unused and can
be removed.

* UIProcess/WebProcessProxy.cpp:
(WebKit::WebProcessProxy::WebProcessProxy):
* UIProcess/WebProcessProxy.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (208940 => 208941)


--- trunk/Source/WebKit2/ChangeLog	2016-11-21 08:09:03 UTC (rev 208940)
+++ trunk/Source/WebKit2/ChangeLog	2016-11-21 09:24:45 UTC (rev 208941)
@@ -1,3 +1,17 @@
+2016-11-21  Carlos Garcia Campos  <[email protected]>
+
+        Remove m_customProtocolManagerProxy from WebProcessProxy
+        https://bugs.webkit.org/show_bug.cgi?id=164908
+
+        Reviewed by Andreas Kling.
+
+        Since the network process is mandatory, the custom protocol manager proxy of WebProcessProxy is unused and can
+        be removed.
+
+        * UIProcess/WebProcessProxy.cpp:
+        (WebKit::WebProcessProxy::WebProcessProxy):
+        * UIProcess/WebProcessProxy.h:
+
 2016-11-20  Zan Dobersek  <[email protected]>
 
         [EncryptedMedia] Make EME API runtime-enabled

Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp (208940 => 208941)


--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp	2016-11-21 08:09:03 UTC (rev 208940)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp	2016-11-21 09:24:45 UTC (rev 208941)
@@ -29,7 +29,6 @@
 #include "APIFrameHandle.h"
 #include "APIPageGroupHandle.h"
 #include "APIPageHandle.h"
-#include "CustomProtocolManagerProxyMessages.h"
 #include "DataReference.h"
 #include "DownloadProxyMap.h"
 #include "Logging.h"
@@ -98,7 +97,6 @@
     : m_responsivenessTimer(*this)
     , m_processPool(processPool)
     , m_mayHaveUniversalFileReadSandboxExtension(false)
-    , m_customProtocolManagerProxy(this, processPool)
     , m_numberOfTimesSuddenTerminationWasDisabled(0)
     , m_throttler(*this)
     , m_isResponsive(NoOrMaybe::Maybe)

Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.h (208940 => 208941)


--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.h	2016-11-21 08:09:03 UTC (rev 208940)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.h	2016-11-21 09:24:45 UTC (rev 208941)
@@ -27,7 +27,6 @@
 
 #include "APIUserInitiatedAction.h"
 #include "ChildProcessProxy.h"
-#include "CustomProtocolManagerProxy.h"
 #include "MessageReceiverMap.h"
 #include "PluginInfoStore.h"
 #include "ProcessLauncher.h"
@@ -236,8 +235,6 @@
     HashSet<VisitedLinkStore*> m_visitedLinkStores;
     HashSet<WebUserContentControllerProxy*> m_webUserContentControllerProxies;
 
-    CustomProtocolManagerProxy m_customProtocolManagerProxy;
-
     int m_numberOfTimesSuddenTerminationWasDisabled;
     ProcessThrottler m_throttler;
     ProcessThrottler::BackgroundActivityToken m_tokenForHoldingLockedFiles;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to