| 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 "webkit/glue/webkit_glue_export.h" | 10 #include "webkit/glue/webkit_glue_export.h" |
| 11 | 11 |
| 12 // Since cc is used from the render process, anything that goes here also needs | 12 // Since cc is used from the render process, anything that goes here also needs |
| 13 // to be added to render_process_host_impl.cc. | 13 // to be added to render_process_host_impl.cc. |
| 14 | 14 |
| 15 namespace cc { | 15 namespace cc { |
| 16 namespace switches { | 16 namespace switches { |
| 17 | 17 |
| 18 WEBKIT_GLUE_EXPORT extern const char kBackgroundColorInsteadOfCheckerboard[]; |
| 19 WEBKIT_GLUE_EXPORT extern const char kDisableThreadedAnimation[]; |
| 20 WEBKIT_GLUE_EXPORT extern const char kEnablePartialSwap[]; |
| 21 WEBKIT_GLUE_EXPORT extern const char kEnablePerTilePainting[]; |
| 22 WEBKIT_GLUE_EXPORT extern const char kEnablePinchInCompositor[]; |
| 18 WEBKIT_GLUE_EXPORT extern const char kJankInsteadOfCheckerboard[]; | 23 WEBKIT_GLUE_EXPORT extern const char kJankInsteadOfCheckerboard[]; |
| 19 WEBKIT_GLUE_EXPORT extern const char kBackgroundColorInsteadOfCheckerboard[]; | |
| 20 | 24 |
| 21 } // namespace switches | 25 } // namespace switches |
| 22 } // namespace cc | 26 } // namespace cc |
| 23 | 27 |
| 24 #endif // CC_SWITCHES_H_ | 28 #endif // CC_SWITCHES_H_ |
| OLD | NEW |