Title: [206705] trunk/Source/WebKit2
Revision
206705
Author
[email protected]
Date
2016-09-30 20:49:15 -0700 (Fri, 30 Sep 2016)

Log Message

Follow-up patch after r206701
https://bugs.webkit.org/show_bug.cgi?id=162818

Unreviewed.

I missed one place required to enable an experimental feature by default.

* UIProcess/Cocoa/WebProcessPoolCocoa.mm:
(WebKit::registerUserDefaultsIfNeeded):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (206704 => 206705)


--- trunk/Source/WebKit2/ChangeLog	2016-10-01 02:48:31 UTC (rev 206704)
+++ trunk/Source/WebKit2/ChangeLog	2016-10-01 03:49:15 UTC (rev 206705)
@@ -1,3 +1,15 @@
+2016-09-30  Myles C. Maxfield  <[email protected]>
+
+        Follow-up patch after r206701
+        https://bugs.webkit.org/show_bug.cgi?id=162818
+
+        Unreviewed.
+
+        I missed one place required to enable an experimental feature by default.
+
+        * UIProcess/Cocoa/WebProcessPoolCocoa.mm:
+        (WebKit::registerUserDefaultsIfNeeded):
+
 2016-09-30  Dan Bernstein  <[email protected]>
 
         [iOS] Editing menu omits the Share command if the selected text is longer than 200 characters

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm (206704 => 206705)


--- trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm	2016-10-01 02:48:31 UTC (rev 206704)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm	2016-10-01 03:49:15 UTC (rev 206705)
@@ -84,6 +84,8 @@
 
 static NSString * const WebKitSuppressMemoryPressureHandlerDefaultsKey = @"WebKitSuppressMemoryPressureHandler";
 
+static NSString * const WebKitVariationFontsEnabledDefaultsKey = @"ExperimentalVariationFontsEnabled";
+
 namespace WebKit {
 
 NSString *SchemeForCustomProtocolRegisteredNotificationName = @"WebKitSchemeForCustomProtocolRegisteredNotification";
@@ -106,6 +108,8 @@
     [registrationDictionary setObject:[NSNumber numberWithBool:NO] forKey:WebKitNetworkCacheEfficacyLoggingEnabledDefaultsKey];
 #endif
 
+    [registrationDictionary setObject:[NSNumber numberWithBool:YES] forKey:WebKitVariationFontsEnabledDefaultsKey];
+
     [[NSUserDefaults standardUserDefaults] registerDefaults:registrationDictionary];
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to