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_SWITCHES_H_ | 7 #ifndef CC_SWITCHES_H_ |
8 #define CC_SWITCHES_H_ | 8 #define CC_SWITCHES_H_ |
9 | 9 |
10 #include "cc/cc_export.h" | 10 #include "cc/cc_export.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 CC_EXPORT extern const char kJankInsteadOfCheckerboard[]; | 25 CC_EXPORT extern const char kJankInsteadOfCheckerboard[]; |
26 CC_EXPORT extern const char kNumRasterThreads[]; | 26 CC_EXPORT extern const char kNumRasterThreads[]; |
27 CC_EXPORT extern const char kShowPropertyChangedRects[]; | 27 CC_EXPORT extern const char kShowPropertyChangedRects[]; |
28 CC_EXPORT extern const char kShowSurfaceDamageRects[]; | 28 CC_EXPORT extern const char kShowSurfaceDamageRects[]; |
29 CC_EXPORT extern const char kShowScreenSpaceRects[]; | 29 CC_EXPORT extern const char kShowScreenSpaceRects[]; |
30 CC_EXPORT extern const char kShowReplicaScreenSpaceRects[]; | 30 CC_EXPORT extern const char kShowReplicaScreenSpaceRects[]; |
31 CC_EXPORT extern const char kShowOccludingRects[]; | 31 CC_EXPORT extern const char kShowOccludingRects[]; |
32 CC_EXPORT extern const char kShowNonOccludingRects[]; | 32 CC_EXPORT extern const char kShowNonOccludingRects[]; |
33 CC_EXPORT extern const char kTraceOverdraw[]; | 33 CC_EXPORT extern const char kTraceOverdraw[]; |
34 CC_EXPORT extern const char kTopControlsHeight[]; | 34 CC_EXPORT extern const char kTopControlsHeight[]; |
| 35 CC_EXPORT extern const char kCompositeToMailbox[]; |
35 | 36 |
36 } // namespace switches | 37 } // namespace switches |
37 } // namespace cc | 38 } // namespace cc |
38 | 39 |
39 #endif // CC_SWITCHES_H_ | 40 #endif // CC_SWITCHES_H_ |
OLD | NEW |