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" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 CC_EXPORT extern const char kUIShowSurfaceDamageRects[]; | 60 CC_EXPORT extern const char kUIShowSurfaceDamageRects[]; |
61 CC_EXPORT extern const char kShowScreenSpaceRects[]; | 61 CC_EXPORT extern const char kShowScreenSpaceRects[]; |
62 CC_EXPORT extern const char kUIShowScreenSpaceRects[]; | 62 CC_EXPORT extern const char kUIShowScreenSpaceRects[]; |
63 CC_EXPORT extern const char kShowReplicaScreenSpaceRects[]; | 63 CC_EXPORT extern const char kShowReplicaScreenSpaceRects[]; |
64 CC_EXPORT extern const char kUIShowReplicaScreenSpaceRects[]; | 64 CC_EXPORT extern const char kUIShowReplicaScreenSpaceRects[]; |
65 CC_EXPORT extern const char kShowOccludingRects[]; | 65 CC_EXPORT extern const char kShowOccludingRects[]; |
66 CC_EXPORT extern const char kUIShowOccludingRects[]; | 66 CC_EXPORT extern const char kUIShowOccludingRects[]; |
67 CC_EXPORT extern const char kShowNonOccludingRects[]; | 67 CC_EXPORT extern const char kShowNonOccludingRects[]; |
68 CC_EXPORT extern const char kUIShowNonOccludingRects[]; | 68 CC_EXPORT extern const char kUIShowNonOccludingRects[]; |
69 | 69 |
| 70 // Unit test related. |
| 71 CC_EXPORT extern const char kCCLayerTreeTestNoTimeout[]; |
| 72 CC_EXPORT extern const char kCCUnittestsTraceEventsToVLOG[]; |
| 73 |
70 CC_EXPORT bool IsImplSidePaintingEnabled(); | 74 CC_EXPORT bool IsImplSidePaintingEnabled(); |
71 | 75 |
72 } // namespace switches | 76 } // namespace switches |
73 } // namespace cc | 77 } // namespace cc |
74 | 78 |
75 #endif // CC_BASE_SWITCHES_H_ | 79 #endif // CC_BASE_SWITCHES_H_ |
OLD | NEW |