diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-08 11:14:54 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-08 11:14:54 +0000 |
commit | d643dd66eb6cd906e7bb30410223f615d330f62f (patch) | |
tree | 0143f689cb5c78fb7e02cd2f578c36d78fab6918 /ui/gfx/switches.cc | |
parent | 1e4187b274d8e9d3a288529e7cdcd7f8bd1d684d (diff) | |
download | chromium_src-d643dd66eb6cd906e7bb30410223f615d330f62f.zip chromium_src-d643dd66eb6cd906e7bb30410223f615d330f62f.tar.gz chromium_src-d643dd66eb6cd906e7bb30410223f615d330f62f.tar.bz2 |
Flip the default value of the flag to enable scaling in ImageSkiaOperations.
This also adds an option in flags page in case this caused the crash in the field.
This requres https://codereview.chromium.org/11684002/.
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/11673010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/switches.cc')
-rw-r--r-- | ui/gfx/switches.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/gfx/switches.cc b/ui/gfx/switches.cc index f25ea9b..f5cad87 100644 --- a/ui/gfx/switches.cc +++ b/ui/gfx/switches.cc @@ -7,16 +7,16 @@ namespace gfx { namespace switches { -// Whether or not ImageSkiaOperations methods can scale one of images -// if they don't have the same scale factor. -const char kDisableScalingInImageSkiaOperations[] = - "disable-scaling-in-image-skia-operations"; - // Let text glyphs have X-positions that aren't snapped to the pixel grid in // the browser UI. const char kEnableBrowserTextSubpixelPositioning[] = "enable-browser-text-subpixel-positioning"; +// Whether or not ImageSkiaOperations methods can scale one of images +// if they don't have the same scale factor. +const char kEnableScalingInImageSkiaOperations[] = + "enable-scaling-in-image-skia-operations"; + // Enable text glyphs to have X-positions that aren't snapped to the pixel grid // in webkit renderers. const char kEnableWebkitTextSubpixelPositioning[] = |