Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 113 // is not considered to be occluding the pixels behind it. | 113 // is not considered to be occluding the pixels behind it. |
| 114 const char kShowNonOccludingRects[] = "show-nonoccluding-rects"; | 114 const char kShowNonOccludingRects[] = "show-nonoccluding-rects"; |
| 115 const char kUIShowNonOccludingRects[] = "ui-show-nonoccluding-rects"; | 115 const char kUIShowNonOccludingRects[] = "ui-show-nonoccluding-rects"; |
| 116 | 116 |
| 117 // Prevents the layer tree unit tests from timing out. | 117 // Prevents the layer tree unit tests from timing out. |
| 118 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; | 118 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; |
| 119 | 119 |
| 120 // Makes pixel tests write their output instead of read it. | 120 // Makes pixel tests write their output instead of read it. |
| 121 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; | 121 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; |
| 122 | 122 |
| 123 // Send idle notifications to V8 after commit. | |
| 124 const char kSendV8IdleNotificationAfterCommit[] = | |
| 125 "send-v8-idle-notification-after-commit"; | |
|
jamesr
2014/08/18 23:23:49
this switch doesn't influence any behavior in cc/,
ernstm
2014/08/18 23:46:33
Done.
| |
| 126 | |
| 123 } // namespace switches | 127 } // namespace switches |
| 124 } // namespace cc | 128 } // namespace cc |
| OLD | NEW |