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