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 #include "cc/base/math_util.h" |
11 | 12 |
12 // Since cc is used from the render process, anything that goes here also needs | 13 // Since cc is used from the render process, anything that goes here also needs |
13 // to be added to render_process_host_impl.cc. | 14 // to be added to render_process_host_impl.cc. |
14 | 15 |
15 namespace cc { | 16 namespace cc { |
16 namespace switches { | 17 namespace switches { |
17 | 18 |
18 // Switches for the renderer compositor only. | 19 // Switches for the renderer compositor only. |
19 CC_EXPORT extern const char kBackgroundColorInsteadOfCheckerboard[]; | 20 CC_EXPORT extern const char kBackgroundColorInsteadOfCheckerboard[]; |
20 CC_EXPORT extern const char kDisableLCDText[]; | 21 CC_EXPORT extern const char kDisableLCDText[]; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 CC_EXPORT extern const char kShowNonOccludingRects[]; | 68 CC_EXPORT extern const char kShowNonOccludingRects[]; |
68 CC_EXPORT extern const char kUIShowNonOccludingRects[]; | 69 CC_EXPORT extern const char kUIShowNonOccludingRects[]; |
69 | 70 |
70 // Unit test related. | 71 // Unit test related. |
71 CC_EXPORT extern const char kCCLayerTreeTestNoTimeout[]; | 72 CC_EXPORT extern const char kCCLayerTreeTestNoTimeout[]; |
72 CC_EXPORT extern const char kCCRebaselinePixeltests[]; | 73 CC_EXPORT extern const char kCCRebaselinePixeltests[]; |
73 | 74 |
74 CC_EXPORT bool IsLCDTextEnabled(); | 75 CC_EXPORT bool IsLCDTextEnabled(); |
75 CC_EXPORT bool IsImplSidePaintingEnabled(); | 76 CC_EXPORT bool IsImplSidePaintingEnabled(); |
76 CC_EXPORT bool IsMapImageEnabled(); | 77 CC_EXPORT bool IsMapImageEnabled(); |
| 78 CC_EXPORT size_t GetNumRasterThreads(); |
77 | 79 |
78 } // namespace switches | 80 } // namespace switches |
79 } // namespace cc | 81 } // namespace cc |
80 | 82 |
81 #endif // CC_BASE_SWITCHES_H_ | 83 #endif // CC_BASE_SWITCHES_H_ |
OLD | NEW |