Changeset 178079 in webkit


Ignore:
Timestamp:
Jan 7, 2015, 7:00:46 PM (11 years ago)
Author:
Simon Fraser
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:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r178077 r178079  
     12015-01-07  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Make WebKitAcceleratedDrawingEnabled into a "debug" pref, so that it's read without page group prefixes
     4        https://bugs.webkit.org/show_bug.cgi?id=140221
     5
     6        Reviewed by Sam Weinig.
     7       
     8        Applications should not be toggling WebKitAcceleratedDrawingEnabled; it's really only
     9        useful to toggle for debugging, so make it a debug pref.
     10
     11        * Shared/WebPreferencesDefinitions.h:
     12
    1132015-01-07  Commit Queue  <commit-queue@webkit.org>
    214
  • trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h

    r177498 r178079  
    111111    macro(AcceleratedCompositingEnabled, acceleratedCompositingEnabled, Bool, bool, true) \
    112112    macro(ForceCompositingMode, forceCompositingMode, Bool, bool, false) \
    113     macro(AcceleratedDrawingEnabled, acceleratedDrawingEnabled, Bool, bool, DEFAULT_ACCELERATED_DRAWING_ENABLED) \
    114113    macro(CanvasUsesAcceleratedDrawing, canvasUsesAcceleratedDrawing, Bool, bool, DEFAULT_CANVAS_USES_ACCELERATED_DRAWING) \
    115114    macro(WebGLEnabled, webGLEnabled, Bool, bool, true) \
     
    232231
    233232#define FOR_EACH_WEBKIT_DEBUG_BOOL_PREFERENCE(macro) \
     233    macro(AcceleratedDrawingEnabled, acceleratedDrawingEnabled, Bool, bool, DEFAULT_ACCELERATED_DRAWING_ENABLED) \
    234234    macro(CompositingBordersVisible, compositingBordersVisible, Bool, bool, false) \
    235235    macro(CompositingRepaintCountersVisible, compositingRepaintCountersVisible, Bool, bool, false) \
Note: See TracChangeset for help on using the changeset viewer.