Title: [178079] trunk/Source/WebKit2
Revision
178079
Author
simon.fra...@apple.com
Date
2015-01-07 19:00:46 -0800 (Wed, 07 Jan 2015)

Log Message

Make WebKitAcceleratedDrawingEnabled into a "debug" pref, so that it's read without page group prefixes
https://bugs.webkit.org/show_bug.cgi?id=140221

Reviewed by Sam Weinig.

Applications should not be toggling WebKitAcceleratedDrawingEnabled; it's really only
useful to toggle for debugging, so make it a debug pref.

* Shared/WebPreferencesDefinitions.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (178078 => 178079)


--- trunk/Source/WebKit2/ChangeLog	2015-01-08 02:17:51 UTC (rev 178078)
+++ trunk/Source/WebKit2/ChangeLog	2015-01-08 03:00:46 UTC (rev 178079)
@@ -1,3 +1,15 @@
+2015-01-07  Simon Fraser  <simon.fra...@apple.com>
+
+        Make WebKitAcceleratedDrawingEnabled into a "debug" pref, so that it's read without page group prefixes
+        https://bugs.webkit.org/show_bug.cgi?id=140221
+
+        Reviewed by Sam Weinig.
+        
+        Applications should not be toggling WebKitAcceleratedDrawingEnabled; it's really only
+        useful to toggle for debugging, so make it a debug pref.
+
+        * Shared/WebPreferencesDefinitions.h:
+
 2015-01-07  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r178068.

Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (178078 => 178079)


--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2015-01-08 02:17:51 UTC (rev 178078)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2015-01-08 03:00:46 UTC (rev 178079)
@@ -110,7 +110,6 @@
     macro(NeedsSiteSpecificQuirks, needsSiteSpecificQuirks, Bool, bool, false) \
     macro(AcceleratedCompositingEnabled, acceleratedCompositingEnabled, Bool, bool, true) \
     macro(ForceCompositingMode, forceCompositingMode, Bool, bool, false) \
-    macro(AcceleratedDrawingEnabled, acceleratedDrawingEnabled, Bool, bool, DEFAULT_ACCELERATED_DRAWING_ENABLED) \
     macro(CanvasUsesAcceleratedDrawing, canvasUsesAcceleratedDrawing, Bool, bool, DEFAULT_CANVAS_USES_ACCELERATED_DRAWING) \
     macro(WebGLEnabled, webGLEnabled, Bool, bool, true) \
     macro(ForceSoftwareWebGLRendering, forceSoftwareWebGLRendering, Bool, bool, false) \
@@ -231,6 +230,7 @@
     \
 
 #define FOR_EACH_WEBKIT_DEBUG_BOOL_PREFERENCE(macro) \
+    macro(AcceleratedDrawingEnabled, acceleratedDrawingEnabled, Bool, bool, DEFAULT_ACCELERATED_DRAWING_ENABLED) \
     macro(CompositingBordersVisible, compositingBordersVisible, Bool, bool, false) \
     macro(CompositingRepaintCountersVisible, compositingRepaintCountersVisible, Bool, bool, false) \
     macro(TiledScrollingIndicatorVisible, tiledScrollingIndicatorVisible, Bool, bool, false) \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to