| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 // Prevents the layer tree unit tests from timing out. | 111 // Prevents the layer tree unit tests from timing out. |
| 112 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; | 112 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; |
| 113 | 113 |
| 114 // Increases timeout for memory checkers. | 114 // Increases timeout for memory checkers. |
| 115 const char kCCLayerTreeTestLongTimeout[] = "cc-layer-tree-test-long-timeout"; | 115 const char kCCLayerTreeTestLongTimeout[] = "cc-layer-tree-test-long-timeout"; |
| 116 | 116 |
| 117 // Makes pixel tests write their output instead of read it. | 117 // Makes pixel tests write their output instead of read it. |
| 118 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; | 118 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; |
| 119 | 119 |
| 120 // Disable re-use of non-exact resources to fulfill ResourcePool requests. |
| 121 // Intended only for use in layout or pixel tests to reduce noise. |
| 122 const char kDisallowNonExactResourceReuse[] = |
| 123 "disallow-non-exact-resource-reuse"; |
| 124 |
| 120 } // namespace switches | 125 } // namespace switches |
| 121 } // namespace cc | 126 } // namespace cc |
| OLD | NEW |