diff options
author | senorblanco@chromium.org <senorblanco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-07 14:24:17 +0000 |
---|---|---|
committer | senorblanco@chromium.org <senorblanco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-07 14:24:17 +0000 |
commit | da8ccd25b461077070b410af07b20e03b4fefd36 (patch) | |
tree | d0482920238efa54e315e0e5c517be6faa28aab4 /content/public/common | |
parent | 2c5c9d596ad422529c88b47db2b60eff9410cde0 (diff) | |
download | chromium_src-da8ccd25b461077070b410af07b20e03b4fefd36.zip chromium_src-da8ccd25b461077070b410af07b20e03b4fefd36.tar.gz chromium_src-da8ccd25b461077070b410af07b20e03b4fefd36.tar.bz2 |
Add --enable-accelerated-filters flag to Chrome. This is the chrome-side change corresponding to http://trac.webkit.org/changeset/102088. Note that most of this is the result of blind devotion to cargo cult, based on code for other flags.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8822025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113388 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/common')
-rw-r--r-- | content/public/common/content_switches.cc | 3 | ||||
-rw-r--r-- | content/public/common/content_switches.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc index f0f2c8d..c074ff9 100644 --- a/content/public/common/content_switches.cc +++ b/content/public/common/content_switches.cc @@ -172,6 +172,9 @@ const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; // in build/features_override.gypi. const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; +// Enable gpu-accelerated SVG/W3C filters. +const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; + // Enables WebKit accessibility within the renderer process. const char kEnableAccessibility[] = "enable-accessibility"; diff --git a/content/public/common/content_switches.h b/content/public/common/content_switches.h index 03ea8ea..6b7a0a9 100644 --- a/content/public/common/content_switches.h +++ b/content/public/common/content_switches.h @@ -65,6 +65,7 @@ CONTENT_EXPORT extern const char kDisableWebAudio[]; extern const char kDisableWebSockets[]; extern const char kEnableAccelerated2dCanvas[]; CONTENT_EXPORT extern const char kEnableAcceleratedDrawing[]; +CONTENT_EXPORT extern const char kEnableAcceleratedFilters[]; extern const char kEnableAccessibility[]; extern const char kEnableAccessibilityLogging[]; CONTENT_EXPORT extern const char kEnableCompositingForFixedPosition[]; |