| 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 22 matching lines...) Expand all Loading... |
| 33 CC_EXPORT extern const char kShowOccludingRects[]; | 33 CC_EXPORT extern const char kShowOccludingRects[]; |
| 34 CC_EXPORT extern const char kShowNonOccludingRects[]; | 34 CC_EXPORT extern const char kShowNonOccludingRects[]; |
| 35 CC_EXPORT extern const char kTraceOverdraw[]; | 35 CC_EXPORT extern const char kTraceOverdraw[]; |
| 36 CC_EXPORT extern const char kTopControlsHeight[]; | 36 CC_EXPORT extern const char kTopControlsHeight[]; |
| 37 CC_EXPORT extern const char kTopControlsHideThreshold[]; | 37 CC_EXPORT extern const char kTopControlsHideThreshold[]; |
| 38 CC_EXPORT extern const char kTopControlsShowThreshold[]; | 38 CC_EXPORT extern const char kTopControlsShowThreshold[]; |
| 39 CC_EXPORT extern const char kTraceAllRenderedFrames[]; | 39 CC_EXPORT extern const char kTraceAllRenderedFrames[]; |
| 40 CC_EXPORT extern const char kSlowDownRasterScaleFactor[]; | 40 CC_EXPORT extern const char kSlowDownRasterScaleFactor[]; |
| 41 CC_EXPORT extern const char kUseCheapnessEstimator[]; | 41 CC_EXPORT extern const char kUseCheapnessEstimator[]; |
| 42 CC_EXPORT extern const char kLowResolutionContentsScaleFactor[]; | 42 CC_EXPORT extern const char kLowResolutionContentsScaleFactor[]; |
| 43 CC_EXPORT extern const char kCompositeToMailbox[]; |
| 43 | 44 |
| 44 CC_EXPORT bool IsImplSidePaintingEnabled(); | 45 CC_EXPORT bool IsImplSidePaintingEnabled(); |
| 45 | 46 |
| 46 } // namespace switches | 47 } // namespace switches |
| 47 } // namespace cc | 48 } // namespace cc |
| 48 | 49 |
| 49 #endif // CC_SWITCHES_H_ | 50 #endif // CC_SWITCHES_H_ |
| OLD | NEW |