Changeset 100033 in webkit
- Timestamp:
- Nov 11, 2011, 3:06:35 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
Source/WebKit2/ChangeLog (modified) (1 diff)
-
Source/WebKit2/WebProcess/mac/WebProcessMac.mm (modified) (1 diff)
-
WebKitLibraries/ChangeLog (modified) (1 diff)
-
WebKitLibraries/WebKitSystemInterface.h (modified) (1 diff)
-
WebKitLibraries/libWebKitSystemInterfaceLeopard.a (modified) ( previous)
-
WebKitLibraries/libWebKitSystemInterfaceLion.a (modified) ( previous)
-
WebKitLibraries/libWebKitSystemInterfaceSnowLeopard.a (modified) ( previous)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r100018 r100033 1 2011-11-11 Alexey Proskuryakov <ap@apple.com> 2 3 WebProcess should use AppSandbox style quarantine 4 https://bugs.webkit.org/show_bug.cgi?id=72168 5 <rdar://problem/10434292> 6 7 Reviewed by Darin Adler. 8 9 * WebProcess/mac/WebProcessMac.mm: (WebKit::initializeSandbox): Just enable it. 10 1 11 2011-11-11 Darin Adler <darin@apple.com> 2 12 -
trunk/Source/WebKit2/WebProcess/mac/WebProcessMac.mm
r99483 r100033 212 212 for (size_t i = 0; sandboxParameters[i]; i += 2) 213 213 fastFree(const_cast<char*>(sandboxParameters[i + 1])); 214 215 // This will override LSFileQuarantineEnabled from Info.plist unless sandbox quarantine is globally disabled. 216 OSStatus error = WKEnableSandboxStyleFileQuarantine(); 217 if (error) { 218 fprintf(stderr, "WebProcess: couldn't enable sandbox style file quarantine: %d\n", error); 219 exit(EX_NOPERM); 220 } 214 221 #endif 215 222 } -
trunk/WebKitLibraries/ChangeLog
r99118 r100033 1 2011-11-11 Alexey Proskuryakov <ap@apple.com> 2 3 WebProcess should use AppSandbox style quarantine 4 https://bugs.webkit.org/show_bug.cgi?id=72168 5 <rdar://problem/10434292> 6 7 Reviewed by Darin Adler. 8 9 * WebKitSystemInterface.h: 10 * libWebKitSystemInterfaceLion.a: 11 Added WKEnableSandboxStyleFileQuarantine(). 12 13 * libWebKitSystemInterfaceLeopard.a: 14 * libWebKitSystemInterfaceSnowLeopard.a: 15 Not sure why these also changed, but updating to match most recent build. 16 1 17 2011-11-02 Dean Jackson <dino@apple.com> 2 18 -
trunk/WebKitLibraries/WebKitSystemInterface.h
r98256 r100033 430 430 WKSandboxExtensionRef WKSandboxExtensionCreateFromSerializedFormat(const char* serializationFormat, size_t length); 431 431 432 OSStatus WKEnableSandboxStyleFileQuarantine(void); 433 432 434 int WKRecommendedScrollerStyle(void); 433 435
Note:
See TracChangeset
for help on using the changeset viewer.