| 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 { |
| 11 | 11 |
| 12 const char kDisableThreadedAnimation[] = "disable-threaded-animation"; | 12 const char kDisableThreadedAnimation[] = "disable-threaded-animation"; |
| 13 | 13 |
| 14 // Disables layer-edge anti-aliasing in the compositor. | 14 // Disables layer-edge anti-aliasing in the compositor. |
| 15 const char kDisableCompositedAntialiasing[] = | 15 const char kDisableCompositedAntialiasing[] = |
| 16 "disable-composited-antialiasing"; | 16 "disable-composited-antialiasing"; |
| 17 | 17 |
| 18 // Disables sending the next BeginMainFrame before the previous commit | 18 // Disables sending the next BeginMainFrame before the previous commit |
| 19 // activates. Overrides the kEnableMainFrameBeforeActivation flag. | 19 // activates. Overrides the kEnableMainFrameBeforeActivation flag. |
| 20 const char kDisableMainFrameBeforeActivation[] = | 20 const char kDisableMainFrameBeforeActivation[] = |
| 21 "disable-main-frame-before-activation"; | 21 "disable-main-frame-before-activation"; |
| 22 | 22 |
| 23 // Enables sending the next BeginMainFrame before the previous commit activates. | 23 // Enables sending the next BeginMainFrame before the previous commit activates. |
| 24 const char kEnableMainFrameBeforeActivation[] = | 24 const char kEnableMainFrameBeforeActivation[] = |
| 25 "enable-main-frame-before-activation"; | 25 "enable-main-frame-before-activation"; |
| 26 | 26 |
| 27 // Enables defering image decodes to the image decode service. |
| 28 const char kEnableCheckerImaging[] = "enable-checker-imaging"; |
| 29 |
| 27 // Percentage of the browser controls need to be hidden before they will auto | 30 // Percentage of the browser controls need to be hidden before they will auto |
| 28 // hide. | 31 // hide. |
| 29 const char kBrowserControlsHideThreshold[] = "top-controls-hide-threshold"; | 32 const char kBrowserControlsHideThreshold[] = "top-controls-hide-threshold"; |
| 30 | 33 |
| 31 // Percentage of the browser controls need to be shown before they will auto | 34 // Percentage of the browser controls need to be shown before they will auto |
| 32 // show. | 35 // show. |
| 33 const char kBrowserControlsShowThreshold[] = "top-controls-show-threshold"; | 36 const char kBrowserControlsShowThreshold[] = "top-controls-show-threshold"; |
| 34 | 37 |
| 35 // Re-rasters everything multiple times to simulate a much slower machine. | 38 // Re-rasters everything multiple times to simulate a much slower machine. |
| 36 // Give a scale factor to cause raster to take that many times longer to | 39 // Give a scale factor to cause raster to take that many times longer to |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; | 111 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; |
| 109 | 112 |
| 110 // Increases timeout for memory checkers. | 113 // Increases timeout for memory checkers. |
| 111 const char kCCLayerTreeTestLongTimeout[] = "cc-layer-tree-test-long-timeout"; | 114 const char kCCLayerTreeTestLongTimeout[] = "cc-layer-tree-test-long-timeout"; |
| 112 | 115 |
| 113 // Makes pixel tests write their output instead of read it. | 116 // Makes pixel tests write their output instead of read it. |
| 114 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; | 117 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; |
| 115 | 118 |
| 116 } // namespace switches | 119 } // namespace switches |
| 117 } // namespace cc | 120 } // namespace cc |
| OLD | NEW |