WebKit Bugzilla
Attachment 339221 Details for
Bug 185172
: Adjust sandbox profile in simulator mode.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185172-20180501134318.patch (text/plain), 2.34 KB, created by
Per Arne Vollan
on 2018-05-01 13:43:18 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Per Arne Vollan
Created:
2018-05-01 13:43:18 PDT
Size:
2.34 KB
patch
obsolete
>Index: Source/WebKit/ChangeLog >=================================================================== >--- Source/WebKit/ChangeLog (revision 231208) >+++ Source/WebKit/ChangeLog (working copy) >@@ -1,3 +1,15 @@ >+2018-05-01 Per Arne Vollan <pvollan@apple.com> >+ >+ Adjust sandbox profile in simulator mode. >+ https://bugs.webkit.org/show_bug.cgi?id=185172 >+ <rdar://problem/39876860> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Fix some sandbox violations. >+ >+ * WebProcess/com.apple.WebProcess.sb.in: >+ > 2018-05-01 Per Arne Vollan <pvollan@apple.com> > > Use correct runloop type in the WebContent process. >Index: Source/WebKit/WebProcess/com.apple.WebProcess.sb.in >=================================================================== >--- Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (revision 231100) >+++ Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (working copy) >@@ -25,7 +25,7 @@ > (deny default (with partial-symbolication)) > (allow system-audit file-read-metadata) > >-#if __MAC_OS_X_VERSION_MIN_REQUIRED < 101300 >+#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101300 > (import "system.sb") > #else > ;;; >@@ -332,7 +332,7 @@ > (iokit-property "saved-config") > (iokit-property "startup-timing") > (iokit-property "touch-size-id") >-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 >+#if !PLATFORM(MAC) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 > (iokit-property "ATY,cbits") > (iokit-property "ATY,intrev") > (iokit-property "AccelNativeDMARowByteAlignment") >@@ -619,7 +619,7 @@ > (system-graphics) > > ;; Networking >-#if __MAC_OS_X_VERSION_MIN_REQUIRED < 101300 >+#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101300 > (system-network) > #endif > (allow network-outbound >@@ -629,7 +629,7 @@ > (literal "/private/var/run/mDNSResponder") > (remote tcp)) > >-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 >+#if !PLATFORM(MAC) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 > ;; CFNetwork > (allow file-read-data (path "/private/var/db/nsurlstoraged/dafsaData.bin")) > #endif >@@ -640,7 +640,7 @@ > (global-name "com.apple.GSSCred") > (global-name "com.apple.system.logger") > (global-name "com.apple.system.notification_center")) >-#if __MAC_OS_X_VERSION_MIN_REQUIRED < 101300 >+#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101300 > (allow network-outbound > (remote udp)) > #endif
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185172
: 339221