| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 const char kCCLayerTreeTestLongTimeout[] = "cc-layer-tree-test-long-timeout"; | 111 const char kCCLayerTreeTestLongTimeout[] = "cc-layer-tree-test-long-timeout"; |
| 112 | 112 |
| 113 // Makes pixel tests write their output instead of read it. | 113 // Makes pixel tests write their output instead of read it. |
| 114 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; | 114 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; |
| 115 | 115 |
| 116 // Disable re-use of non-exact resources to fulfill ResourcePool requests. | 116 // Disable re-use of non-exact resources to fulfill ResourcePool requests. |
| 117 // Intended only for use in layout or pixel tests to reduce noise. | 117 // Intended only for use in layout or pixel tests to reduce noise. |
| 118 const char kDisallowNonExactResourceReuse[] = | 118 const char kDisallowNonExactResourceReuse[] = |
| 119 "disallow-non-exact-resource-reuse"; | 119 "disallow-non-exact-resource-reuse"; |
| 120 | 120 |
| 121 // Use Viz HitTest Component for Event Targetting |
| 122 const char kUseVizHitTest[] = "use-viz-hit-test"; |
| 123 |
| 121 } // namespace switches | 124 } // namespace switches |
| 122 } // namespace cc | 125 } // namespace cc |
| OLD | NEW |