Title: [228135] trunk/Source/WebKit
Revision
228135
Author
[email protected]
Date
2018-02-05 15:31:22 -0800 (Mon, 05 Feb 2018)

Log Message

[iOS] Storage process is using the wrong sandbox profile filename
https://bugs.webkit.org/show_bug.cgi?id=182500
<rdar://problem/37232614>

Reviewed by David Kilzer.

The iOS entitlements file was still referencing the old Databases sandbox profile, even though the
process has been renamed 'Storage'.

* Configurations/Databases-iOS.entitlements:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (228134 => 228135)


--- trunk/Source/WebKit/ChangeLog	2018-02-05 23:23:28 UTC (rev 228134)
+++ trunk/Source/WebKit/ChangeLog	2018-02-05 23:31:22 UTC (rev 228135)
@@ -1,3 +1,16 @@
+2018-02-05  Brent Fulgham  <[email protected]>
+
+        [iOS] Storage process is using the wrong sandbox profile filename
+        https://bugs.webkit.org/show_bug.cgi?id=182500
+        <rdar://problem/37232614>
+
+        Reviewed by David Kilzer.
+
+        The iOS entitlements file was still referencing the old Databases sandbox profile, even though the
+        process has been renamed 'Storage'.
+
+        * Configurations/Databases-iOS.entitlements:
+
 2018-02-05  Ryosuke Niwa  <[email protected]>
 
         Add DoNotProcessIncomingMessagesWhenWaitingForSyncReply to GetPlugins and RootViewToScreen

Modified: trunk/Source/WebKit/Configurations/Databases-iOS.entitlements (228134 => 228135)


--- trunk/Source/WebKit/Configurations/Databases-iOS.entitlements	2018-02-05 23:23:28 UTC (rev 228134)
+++ trunk/Source/WebKit/Configurations/Databases-iOS.entitlements	2018-02-05 23:31:22 UTC (rev 228135)
@@ -4,7 +4,7 @@
 <dict>
 	<key>seatbelt-profiles</key>
 	<array>
-		<string>com.apple.WebKit.Databases</string>
+		<string>com.apple.WebKit.Storage</string>
 	</array>
 </dict>
 </plist>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to