WebKit Bugzilla
Attachment 371097 Details for
Bug 198443
: Teach AuxiliaryProcess about LoadOptimizer
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-198443-20190531163352.patch (text/plain), 2.66 KB, created by
Jiewen Tan
on 2019-05-31 16:33:53 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jiewen Tan
Created:
2019-05-31 16:33:53 PDT
Size:
2.66 KB
patch
obsolete
>Subversion Revision: 245912 >diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog >index 8f0793d47bfc8713ded56b0c5c5f7e6b3d0b6251..baada436938ea16c7bda04d6e8cb9ae30a16cc9c 100644 >--- a/Source/WebKit/ChangeLog >+++ b/Source/WebKit/ChangeLog >@@ -1,3 +1,16 @@ >+2019-05-31 Jiewen Tan <jiewen_tan@apple.com> >+ >+ Teach AuxiliaryProcess about LoadOptimizer >+ https://bugs.webkit.org/show_bug.cgi?id=198443 >+ <rdar://problem/51319120> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Shared/ios/AuxiliaryProcessIOS.mm: >+ (WebKit::AuxiliaryProcess::platformInitialize): >+ * Shared/mac/AuxiliaryProcessMac.mm: >+ (WebKit::AuxiliaryProcess::platformInitialize): >+ > 2019-05-30 Chris Dumez <cdumez@apple.com> > > Network process crash when decoding SecItemResponseData >diff --git a/Source/WebKit/Shared/ios/AuxiliaryProcessIOS.mm b/Source/WebKit/Shared/ios/AuxiliaryProcessIOS.mm >index e5e946f97339aa7aae079dd83e5de12813f97581..00e243cfd97ad2c2934b6e2c5021dd04899668e2 100644 >--- a/Source/WebKit/Shared/ios/AuxiliaryProcessIOS.mm >+++ b/Source/WebKit/Shared/ios/AuxiliaryProcessIOS.mm >@@ -43,6 +43,10 @@ > #import <wtf/spi/darwin/SandboxSPI.h> > #endif > >+#if USE(APPLE_INTERNAL_SDK) >+#include <WebKitAdditions/AuxiliaryProcessAdditions.h> >+#endif >+ > namespace WebKit { > > void AuxiliaryProcess::platformInitialize() >@@ -51,6 +55,9 @@ void AuxiliaryProcess::platformInitialize() > floatingPointEnvironment.enableDenormalSupport(); > floatingPointEnvironment.saveMainThreadEnvironment(); > [[NSFileManager defaultManager] changeCurrentDirectoryPath:[[NSBundle mainBundle] bundlePath]]; >+#if HAVE(LOAD_OPTIMIZER) >+AUXILIARYPROCESS_LOADOPTIMIZER_ADDITIONS >+#endif > } > > void AuxiliaryProcess::initializeSandbox(const AuxiliaryProcessInitializationParameters& parameters, SandboxInitializationParameters& sandboxParameters) >diff --git a/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm b/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm >index b157fcbcc7da3dfbf5e73c9f07f0f87677edf805..ac0f2d87a2ba39fe63ac6d0342665fe3473867c8 100644 >--- a/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm >+++ b/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm >@@ -57,6 +57,7 @@ > > #if USE(APPLE_INTERNAL_SDK) > #import <ApplicationServices/ApplicationServicesPriv.h> >+#import <WebKitAdditions/AuxiliaryProcessAdditions.h> > #import <rootless.h> > #endif > >@@ -159,6 +160,9 @@ void AuxiliaryProcess::platformInitialize() > { > initializeTimerCoalescingPolicy(); > [[NSFileManager defaultManager] changeCurrentDirectoryPath:[[NSBundle mainBundle] bundlePath]]; >+#if HAVE(LOAD_OPTIMIZER) >+AUXILIARYPROCESS_LOADOPTIMIZER_ADDITIONS >+#endif > } > > static OSStatus enableSandboxStyleFileQuarantine()
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 198443
: 371097