Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3123)

Unified Diff: cc/switches.cc

Issue 11186039: Move CC switches to cc/switches.h. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Switch ui/compositor back to using compositorSupport() Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/switches.h ('k') | cc/test/test_common.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/switches.cc
diff --git a/cc/switches.cc b/cc/switches.cc
index e9e0a778ad51c2ca1a92ddd8e1092f7bbb4ff696..86409fdd331a0537e7c27ab1d84b93594ad95870 100644
--- a/cc/switches.cc
+++ b/cc/switches.cc
@@ -7,14 +7,24 @@
namespace cc {
namespace switches {
-// When threaded compositing is turned on, wait until the entire frame has
-// content (i.e. jank) instead of showing checkerboards for missing content.
-const char kJankInsteadOfCheckerboard[] = "jank-instead-of-checkerboard";
-
// On platforms where checkerboards are used, prefer background colors instead
// of checkerboards.
const char kBackgroundColorInsteadOfCheckerboard[] =
"background-color-instead-of-checkerboard";
+const char kDisableThreadedAnimation[] = "disable-threaded-animation";
+
+const char kEnablePartialSwap[] = "enable-partial-swap";
+
+const char kEnablePerTilePainting[] = "enable-per-tile-painting";
+
+// Enables an alternative pinch-zoom gesture support, via the threaded
+// compositor.
+const char kEnablePinchInCompositor[] = "enable-pinch-in-compositor";
+
+// When threaded compositing is turned on, wait until the entire frame has
+// content (i.e. jank) instead of showing checkerboards for missing content.
+const char kJankInsteadOfCheckerboard[] = "jank-instead-of-checkerboard";
+
} // namespace switches
} // namespace cc
« no previous file with comments | « cc/switches.h ('k') | cc/test/test_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698