Title: [227950] branches/safari-605-branch/Source/WebKit
Revision
227950
Author
[email protected]
Date
2018-01-31 20:27:12 -0800 (Wed, 31 Jan 2018)

Log Message

Cherry-pick r227941. rdar://problem/37092137

Modified Paths

Diff

Modified: branches/safari-605-branch/Source/WebKit/ChangeLog (227949 => 227950)


--- branches/safari-605-branch/Source/WebKit/ChangeLog	2018-02-01 04:27:09 UTC (rev 227949)
+++ branches/safari-605-branch/Source/WebKit/ChangeLog	2018-02-01 04:27:12 UTC (rev 227950)
@@ -1,5 +1,20 @@
 2018-01-31  Jason Marcell  <[email protected]>
 
+        Cherry-pick r227941. rdar://problem/37092137
+
+    2018-01-31  Brent Fulgham  <[email protected]>
+
+            Follow-up to r227939.
+            https://bugs.webkit.org/show_bug.cgi?id=182354
+            <rdar://problem/37046844>
+
+            Make sure the correct sandbox is used on iOS as well.
+
+            * StorageProcess/ios/StorageProcessIOS.mm:
+            (WebKit::StorageProcess::initializeSandbox):
+
+2018-01-31  Jason Marcell  <[email protected]>
+
         Cherry-pick r227939. rdar://problem/37092137
 
     2018-01-31  Brent Fulgham  <[email protected]>

Modified: branches/safari-605-branch/Source/WebKit/StorageProcess/ios/StorageProcessIOS.mm (227949 => 227950)


--- branches/safari-605-branch/Source/WebKit/StorageProcess/ios/StorageProcessIOS.mm	2018-02-01 04:27:09 UTC (rev 227949)
+++ branches/safari-605-branch/Source/WebKit/StorageProcess/ios/StorageProcessIOS.mm	2018-02-01 04:27:12 UTC (rev 227950)
@@ -53,7 +53,7 @@
 #if ENABLE_MANUAL_DATABASE_SANDBOXING
     // Need to override the default, because service has a different bundle ID.
     NSBundle *webkit2Bundle = [NSBundle bundleForClass:NSClassFromString(@"WKWebView")];
-    sandboxParameters.setOverrideSandboxProfilePath([webkit2Bundle pathForResource:@"com.apple.WebKit.Databases" ofType:@"sb"]);
+    sandboxParameters.setOverrideSandboxProfilePath([webkit2Bundle pathForResource:@"com.apple.WebKit.Storage" ofType:@"sb"]);
     ChildProcess::initializeSandbox(parameters, sandboxParameters);
 #endif
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to