Title: [237154] trunk/Source/WebKit
Revision
237154
Author
commit-qu...@webkit.org
Date
2018-10-15 16:18:52 -0700 (Mon, 15 Oct 2018)

Log Message

Remove StorageProcess leftover
https://bugs.webkit.org/show_bug.cgi?id=190591

Patch by Patrick Griffis <pgrif...@igalia.com> on 2018-10-15
Reviewed by Michael Catanzaro.

The process was deleted.

* Shared/ChildProcess.h:
* Shared/mac/ChildProcessMac.mm:
(WebKit::processStorageClass):
(WebKit::sandboxDirectory):
* UIProcess/ChildProcessProxy.cpp:
(WebKit::ChildProcessProxy::getLaunchOptions):
* UIProcess/Launcher/ProcessLauncher.h:
* UIProcess/Launcher/mac/ProcessLauncherMac.mm:
(WebKit::serviceName):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (237153 => 237154)


--- trunk/Source/WebKit/ChangeLog	2018-10-15 23:14:33 UTC (rev 237153)
+++ trunk/Source/WebKit/ChangeLog	2018-10-15 23:18:52 UTC (rev 237154)
@@ -1,3 +1,22 @@
+2018-10-15  Patrick Griffis  <pgrif...@igalia.com>
+
+        Remove StorageProcess leftover
+        https://bugs.webkit.org/show_bug.cgi?id=190591
+
+        Reviewed by Michael Catanzaro.
+
+        The process was deleted.
+
+        * Shared/ChildProcess.h:
+        * Shared/mac/ChildProcessMac.mm:
+        (WebKit::processStorageClass):
+        (WebKit::sandboxDirectory):
+        * UIProcess/ChildProcessProxy.cpp:
+        (WebKit::ChildProcessProxy::getLaunchOptions):
+        * UIProcess/Launcher/ProcessLauncher.h:
+        * UIProcess/Launcher/mac/ProcessLauncherMac.mm:
+        (WebKit::serviceName):
+
 2018-10-15  Alex Christensen  <achristen...@webkit.org>
 
         Remove unused parameters of WebPageGroupData

Modified: trunk/Source/WebKit/Shared/ChildProcess.h (237153 => 237154)


--- trunk/Source/WebKit/Shared/ChildProcess.h	2018-10-15 23:14:33 UTC (rev 237153)
+++ trunk/Source/WebKit/Shared/ChildProcess.h	2018-10-15 23:18:52 UTC (rev 237154)
@@ -48,7 +48,6 @@
     enum class ProcessType : uint8_t {
         WebContent,
         Network,
-        Storage,
         Plugin
     };
 

Modified: trunk/Source/WebKit/Shared/mac/ChildProcessMac.mm (237153 => 237154)


--- trunk/Source/WebKit/Shared/mac/ChildProcessMac.mm	2018-10-15 23:14:33 UTC (rev 237153)
+++ trunk/Source/WebKit/Shared/mac/ChildProcessMac.mm	2018-10-15 23:18:52 UTC (rev 237154)
@@ -224,8 +224,6 @@
         return "WebKitWebContentSandbox";
     case ChildProcess::ProcessType::Network:
         return "WebKitNetworkingSandbox";
-    case ChildProcess::ProcessType::Storage:
-        return "WebKitStorageSandbox";
     case ChildProcess::ProcessType::Plugin:
         return "WebKitPluginSandbox";
     }
@@ -285,9 +283,6 @@
     case ChildProcess::ProcessType::Network:
         directory.append("/com.apple.WebKit.Networking.Sandbox");
         break;
-    case ChildProcess::ProcessType::Storage:
-        directory.append("/com.apple.WebKit.Storage.Sandbox");
-        break;
     case ChildProcess::ProcessType::Plugin:
         directory.append("/com.apple.WebKit.Plugin.Sandbox");
         break;

Modified: trunk/Source/WebKit/UIProcess/ChildProcessProxy.cpp (237153 => 237154)


--- trunk/Source/WebKit/UIProcess/ChildProcessProxy.cpp	2018-10-15 23:14:33 UTC (rev 237153)
+++ trunk/Source/WebKit/UIProcess/ChildProcessProxy.cpp	2018-10-15 23:18:52 UTC (rev 237154)
@@ -72,9 +72,6 @@
     case ProcessLauncher::ProcessType::Network:
         varname = "NETWORK_PROCESS_CMD_PREFIX";
         break;
-    case ProcessLauncher::ProcessType::Storage:
-        varname = "STORAGE_PROCESS_CMD_PREFIX";
-        break;
     }
     const char* processCmdPrefix = getenv(varname);
     if (processCmdPrefix && *processCmdPrefix)

Modified: trunk/Source/WebKit/UIProcess/Launcher/ProcessLauncher.h (237153 => 237154)


--- trunk/Source/WebKit/UIProcess/Launcher/ProcessLauncher.h	2018-10-15 23:14:33 UTC (rev 237153)
+++ trunk/Source/WebKit/UIProcess/Launcher/ProcessLauncher.h	2018-10-15 23:18:52 UTC (rev 237154)
@@ -57,7 +57,6 @@
         Plugin64,
 #endif
         Network,
-        Storage,
     };
 
     struct LaunchOptions {

Modified: trunk/Source/WebKit/UIProcess/Launcher/mac/ProcessLauncherMac.mm (237153 => 237154)


--- trunk/Source/WebKit/UIProcess/Launcher/mac/ProcessLauncherMac.mm	2018-10-15 23:14:33 UTC (rev 237153)
+++ trunk/Source/WebKit/UIProcess/Launcher/mac/ProcessLauncherMac.mm	2018-10-15 23:18:52 UTC (rev 237154)
@@ -56,12 +56,6 @@
         return launchOptions.nonValidInjectedCodeAllowed ? "com.apple.WebKit.WebContent.Development" : "com.apple.WebKit.WebContent";
     case ProcessLauncher::ProcessType::Network:
         return "com.apple.WebKit.Networking";
-    case ProcessLauncher::ProcessType::Storage:
-#if PLATFORM(IOS) && !PLATFORM(WATCHOS) && !PLATFORM(APPLETV) && !PLATFORM(IOS_SIMULATOR) && __IPHONE_OS_VERSION_MIN_REQUIRED < 110300
-        return "com.apple.WebKit.Databases";
-#else
-        return "com.apple.WebKit.Storage";
-#endif
 #if ENABLE(NETSCAPE_PLUGIN_API)
     case ProcessLauncher::ProcessType::Plugin32:
         return "com.apple.WebKit.Plugin.32";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to