Title: [229936] trunk/Source/WebKit
Revision
229936
Author
wilan...@apple.com
Date
2018-03-23 16:48:23 -0700 (Fri, 23 Mar 2018)

Log Message

Resource Load Statistics: Pick up ITP debug mode flag from defaults
https://bugs.webkit.org/show_bug.cgi?id=183956
<rdar://problem/38559574>

Reviewed by Brent Fulgham.

* UIProcess/Cocoa/WebResourceLoadStatisticsStoreCocoa.mm:
(WebKit::WebResourceLoadStatisticsStore::registerUserDefaultsIfNeeded):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (229935 => 229936)


--- trunk/Source/WebKit/ChangeLog	2018-03-23 23:46:50 UTC (rev 229935)
+++ trunk/Source/WebKit/ChangeLog	2018-03-23 23:48:23 UTC (rev 229936)
@@ -1,3 +1,14 @@
+2018-03-23  John Wilander  <wilan...@apple.com>
+
+        Resource Load Statistics: Pick up ITP debug mode flag from defaults
+        https://bugs.webkit.org/show_bug.cgi?id=183956
+        <rdar://problem/38559574>
+
+        Reviewed by Brent Fulgham.
+
+        * UIProcess/Cocoa/WebResourceLoadStatisticsStoreCocoa.mm:
+        (WebKit::WebResourceLoadStatisticsStore::registerUserDefaultsIfNeeded):
+
 2018-03-23  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [Extra zoom mode] Adopt list view controller UI for select menus

Modified: trunk/Source/WebKit/UIProcess/Cocoa/WebResourceLoadStatisticsStoreCocoa.mm (229935 => 229936)


--- trunk/Source/WebKit/UIProcess/Cocoa/WebResourceLoadStatisticsStoreCocoa.mm	2018-03-23 23:46:50 UTC (rev 229935)
+++ trunk/Source/WebKit/UIProcess/Cocoa/WebResourceLoadStatisticsStoreCocoa.mm	2018-03-23 23:48:23 UTC (rev 229936)
@@ -50,6 +50,7 @@
             setGrandfatheringTime(grandfatheringTime);
 
         setDebugLogggingEnabled([[NSUserDefaults standardUserDefaults] boolForKey:@"ResourceLoadStatisticsDebugLoggingEnabled"]);
+        setResourceLoadStatisticsDebugMode([[NSUserDefaults standardUserDefaults] boolForKey:@"ExperimentalResourceLoadStatisticsDebugMode"]);
     });
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to