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

Side by Side Diff: cc/base/switches.cc

Issue 1177383005: cc: Add command line for frame production throttle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 5 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/base/switches.h" 5 #include "cc/base/switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace cc { 9 namespace cc {
10 namespace switches { 10 namespace switches {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 const char kShowReplicaScreenSpaceRects[] = "show-replica-screenspace-rects"; 96 const char kShowReplicaScreenSpaceRects[] = "show-replica-screenspace-rects";
97 const char kUIShowReplicaScreenSpaceRects[] = 97 const char kUIShowReplicaScreenSpaceRects[] =
98 "ui-show-replica-screenspace-rects"; 98 "ui-show-replica-screenspace-rects";
99 99
100 // Prevents the layer tree unit tests from timing out. 100 // Prevents the layer tree unit tests from timing out.
101 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; 101 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout";
102 102
103 // Makes pixel tests write their output instead of read it. 103 // Makes pixel tests write their output instead of read it.
104 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; 104 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests";
105 105
106 // Disable frame production throttling.
danakj 2015/07/01 19:47:23 Can you expand this comment? What is a beginframe
107 const char kDisableBeginFrameInterval[] = "disable-beginframe-interval";
108
106 } // namespace switches 109 } // namespace switches
107 } // namespace cc 110 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698