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

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

Issue 935333002: Update from https://crrev.com/316786 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « cc/base/switches.h ('k') | cc/blink/web_display_item_list_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // layer. 92 // layer.
93 const char kShowScreenSpaceRects[] = "show-screenspace-rects"; 93 const char kShowScreenSpaceRects[] = "show-screenspace-rects";
94 const char kUIShowScreenSpaceRects[] = "ui-show-screenspace-rects"; 94 const char kUIShowScreenSpaceRects[] = "ui-show-screenspace-rects";
95 95
96 // Show rects in the HUD around the screen-space transformed bounds of every 96 // Show rects in the HUD around the screen-space transformed bounds of every
97 // layer's replica, when they have one. 97 // layer's replica, when they have one.
98 const char kShowReplicaScreenSpaceRects[] = "show-replica-screenspace-rects"; 98 const char kShowReplicaScreenSpaceRects[] = "show-replica-screenspace-rects";
99 const char kUIShowReplicaScreenSpaceRects[] = 99 const char kUIShowReplicaScreenSpaceRects[] =
100 "ui-show-replica-screenspace-rects"; 100 "ui-show-replica-screenspace-rects";
101 101
102 // Show rects in the HUD wherever something is known to be drawn opaque and is
103 // considered occluding the pixels behind it.
104 const char kShowOccludingRects[] = "show-occluding-rects";
105 const char kUIShowOccludingRects[] = "ui-show-occluding-rects";
106
107 // Show rects in the HUD wherever something is not known to be drawn opaque and
108 // is not considered to be occluding the pixels behind it.
109 const char kShowNonOccludingRects[] = "show-nonoccluding-rects";
110 const char kUIShowNonOccludingRects[] = "ui-show-nonoccluding-rects";
111
112 // Prevents the layer tree unit tests from timing out. 102 // Prevents the layer tree unit tests from timing out.
113 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; 103 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout";
114 104
115 // Makes pixel tests write their output instead of read it. 105 // Makes pixel tests write their output instead of read it.
116 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; 106 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests";
117 107
118 } // namespace switches 108 } // namespace switches
119 } // namespace cc 109 } // namespace cc
OLDNEW
« no previous file with comments | « cc/base/switches.h ('k') | cc/blink/web_display_item_list_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698