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 // Defines all the "cc" command-line switches. | 5 // Defines all the "cc" command-line switches. |
6 | 6 |
7 #ifndef CC_BASE_SWITCHES_H_ | 7 #ifndef CC_BASE_SWITCHES_H_ |
8 #define CC_BASE_SWITCHES_H_ | 8 #define CC_BASE_SWITCHES_H_ |
9 | 9 |
10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
11 | 11 |
12 // Since cc is used from the render process, anything that goes here also needs | 12 // Since cc is used from the render process, anything that goes here also needs |
13 // to be added to render_process_host_impl.cc. | 13 // to be added to render_process_host_impl.cc. |
14 | 14 |
15 namespace cc { | 15 namespace cc { |
16 namespace switches { | 16 namespace switches { |
17 | 17 |
18 // Switches for the renderer compositor only. | 18 // Switches for the renderer compositor only. |
19 CC_EXPORT extern const char kDisableThreadedAnimation[]; | 19 CC_EXPORT extern const char kDisableThreadedAnimation[]; |
20 CC_EXPORT extern const char kDisableCompositedAntialiasing[]; | 20 CC_EXPORT extern const char kDisableCompositedAntialiasing[]; |
21 CC_EXPORT extern const char kDisableMainFrameBeforeActivation[]; | 21 CC_EXPORT extern const char kDisableMainFrameBeforeActivation[]; |
22 CC_EXPORT extern const char kEnableMainFrameBeforeActivation[]; | 22 CC_EXPORT extern const char kEnableMainFrameBeforeActivation[]; |
23 CC_EXPORT extern const char kJankInsteadOfCheckerboard[]; | 23 CC_EXPORT extern const char kJankInsteadOfCheckerboard[]; |
24 CC_EXPORT extern const char kTopControlsHideThreshold[]; | 24 CC_EXPORT extern const char kTopControlsHideThreshold[]; |
25 CC_EXPORT extern const char kTopControlsShowThreshold[]; | 25 CC_EXPORT extern const char kTopControlsShowThreshold[]; |
26 CC_EXPORT extern const char kSlowDownRasterScaleFactor[]; | 26 CC_EXPORT extern const char kSlowDownRasterScaleFactor[]; |
27 CC_EXPORT extern const char kCompositeToMailbox[]; | 27 CC_EXPORT extern const char kCompositeToMailbox[]; |
28 CC_EXPORT extern const char kMaxUnusedResourceMemoryUsagePercentage[]; | |
29 CC_EXPORT extern const char kStrictLayerPropertyChangeChecking[]; | 28 CC_EXPORT extern const char kStrictLayerPropertyChangeChecking[]; |
30 CC_EXPORT extern const char kEnablePropertyTreeVerification[]; | 29 CC_EXPORT extern const char kEnablePropertyTreeVerification[]; |
31 | 30 |
32 // Switches for both the renderer and ui compositors. | 31 // Switches for both the renderer and ui compositors. |
33 CC_EXPORT extern const char kUIDisablePartialSwap[]; | 32 CC_EXPORT extern const char kUIDisablePartialSwap[]; |
34 CC_EXPORT extern const char kEnableBeginFrameScheduling[]; | 33 CC_EXPORT extern const char kEnableBeginFrameScheduling[]; |
35 CC_EXPORT extern const char kEnableGpuBenchmarking[]; | 34 CC_EXPORT extern const char kEnableGpuBenchmarking[]; |
36 | 35 |
37 // Debug visualizations. | 36 // Debug visualizations. |
38 CC_EXPORT extern const char kShowCompositedLayerBorders[]; | 37 CC_EXPORT extern const char kShowCompositedLayerBorders[]; |
(...skipping 12 matching lines...) Expand all Loading... |
51 CC_EXPORT extern const char kUIShowReplicaScreenSpaceRects[]; | 50 CC_EXPORT extern const char kUIShowReplicaScreenSpaceRects[]; |
52 | 51 |
53 // Unit test related. | 52 // Unit test related. |
54 CC_EXPORT extern const char kCCLayerTreeTestNoTimeout[]; | 53 CC_EXPORT extern const char kCCLayerTreeTestNoTimeout[]; |
55 CC_EXPORT extern const char kCCRebaselinePixeltests[]; | 54 CC_EXPORT extern const char kCCRebaselinePixeltests[]; |
56 | 55 |
57 } // namespace switches | 56 } // namespace switches |
58 } // namespace cc | 57 } // namespace cc |
59 | 58 |
60 #endif // CC_BASE_SWITCHES_H_ | 59 #endif // CC_BASE_SWITCHES_H_ |
OLD | NEW |