Title: [163950] trunk/Source/WebKit2
Revision
163950
Author
fpi...@apple.com
Date
2014-02-11 22:40:54 -0800 (Tue, 11 Feb 2014)

Log Message

JIT should be enabled (regression from addition of JIT enabled setting)
https://bugs.webkit.org/show_bug.cgi?id=128653

Reviewed by Tim Horton.

* UIProcess/mac/WebContextMac.mm:
(WebKit::registerUserDefaultsIfNeeded):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (163949 => 163950)


--- trunk/Source/WebKit2/ChangeLog	2014-02-12 06:03:36 UTC (rev 163949)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-12 06:40:54 UTC (rev 163950)
@@ -1,3 +1,13 @@
+2014-02-11  Filip Pizlo  <fpi...@apple.com>
+
+        JIT should be enabled (regression from addition of JIT enabled setting)
+        https://bugs.webkit.org/show_bug.cgi?id=128653
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/mac/WebContextMac.mm:
+        (WebKit::registerUserDefaultsIfNeeded):
+
 2014-02-11  Ryosuke Niwa  <rn...@webkit.org>
 
         Remove one of includes added in r163943 and r163939.

Modified: trunk/Source/WebKit2/UIProcess/mac/WebContextMac.mm (163949 => 163950)


--- trunk/Source/WebKit2/UIProcess/mac/WebContextMac.mm	2014-02-12 06:03:36 UTC (rev 163949)
+++ trunk/Source/WebKit2/UIProcess/mac/WebContextMac.mm	2014-02-12 06:40:54 UTC (rev 163950)
@@ -96,9 +96,10 @@
     didRegister = true;
     NSMutableDictionary *registrationDictionary = [NSMutableDictionary dictionary];
     
+    [registrationDictionary setObject:[NSNumber numberWithBool:YES] forKey:WebKitJSCJITEnabledDefaultsKey];
+
 #if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
     [registrationDictionary setObject:[NSNumber numberWithBool:YES] forKey:WebKitKerningAndLigaturesEnabledByDefaultDefaultsKey];
-    [registrationDictionary setObject:[NSNumber numberWithBool:YES] forKey:WebKitJSCJITEnabledDefaultsKey];
     [registrationDictionary setObject:[NSNumber numberWithBool:NO] forKey:WebKitJSCFTLEnabledDefaultsKey];
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to