| Index: content/public/common/content_switches.cc
|
| diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
|
| index 8b0463d343360e8211b1a224e5b2895b27179921..c3bb78284ba081b0519fa554f5508d8ec6fbf30e 100644
|
| --- a/content/public/common/content_switches.cc
|
| +++ b/content/public/common/content_switches.cc
|
| @@ -170,11 +170,8 @@ const char kDisableWebSockets[] = "disable-web-sockets";
|
| // Enable gpu-accelerated 2d canvas.
|
| const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas";
|
|
|
| -// Enable hardware accelerated page drawing.
|
| -// Please note that this flag is honored only if chromium is compiled with
|
| -// SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1
|
| -// in build/features_override.gypi.
|
| -const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing";
|
| +// Enable hardware accelerated page painting.
|
| +const char kEnableAcceleratedPainting[] = "enable-accelerated-painting";
|
|
|
| // Enable gpu-accelerated SVG/W3C filters.
|
| const char kEnableAcceleratedFilters[] = "enable-accelerated-filters";
|
| @@ -559,4 +556,7 @@ const char kUseSystemSSL[] = "use-system-ssl";
|
| const char kRendererCheckFalseTest[] = "renderer-check-false-test";
|
| #endif
|
|
|
| +// Enable per-tile page painting.
|
| +const char kEnablePerTilePainting[] = "enable-per-tile-painting";
|
| +
|
| } // namespace switches
|
|
|