summaryrefslogtreecommitdiffstats
path: root/cc/base/switches.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cc/base/switches.cc')
-rw-r--r--cc/base/switches.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/cc/base/switches.cc b/cc/base/switches.cc
index 4cff4d2..0731598 100644
--- a/cc/base/switches.cc
+++ b/cc/base/switches.cc
@@ -15,6 +15,19 @@ const char kDisableThreadedAnimation[] = "disable-threaded-animation";
const char kDisableCompositedAntialiasing[] =
"disable-composited-antialiasing";
+// Disables sending the next BeginMainFrame before the previous commit has
+// drawn.
+const char kDisableMainFrameBeforeDraw[] = "disable-main-frame-before-draw";
+
+// Disables sending the next BeginMainFrame before the previous commit
+// activates. Overrides the kEnableMainFrameBeforeActivation flag.
+const char kDisableMainFrameBeforeActivation[] =
+ "disable-main-frame-before-activation";
+
+// Enables sending the next BeginMainFrame before the previous commit activates.
+const char kEnableMainFrameBeforeActivation[] =
+ "enable-main-frame-before-activation";
+
const char kEnableTopControlsPositionCalculation[] =
"enable-top-controls-position-calculation";