| 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 command-line switches used by ui/base. | 5 // Defines all the command-line switches used by ui/base. |
| 6 | 6 |
| 7 #ifndef UI_BASE_UI_BASE_SWITCHES_H_ | 7 #ifndef UI_BASE_UI_BASE_SWITCHES_H_ |
| 8 #define UI_BASE_UI_BASE_SWITCHES_H_ | 8 #define UI_BASE_UI_BASE_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "ui/base/ui_export.h" | 11 #include "ui/base/ui_export.h" |
| 12 | 12 |
| 13 namespace switches { | 13 namespace switches { |
| 14 | 14 |
| 15 UI_EXPORT extern const char kDisableDwmComposition[]; | 15 UI_EXPORT extern const char kDisableDwmComposition[]; |
| 16 UI_EXPORT extern const char kDisableTouchAdjustment[]; | 16 UI_EXPORT extern const char kDisableTouchAdjustment[]; |
| 17 UI_EXPORT extern const char kDisableTouchDragDrop[]; | |
| 18 UI_EXPORT extern const char kDisableTouchEditing[]; | |
| 19 UI_EXPORT extern const char kDisableViewsTextfield[]; | 17 UI_EXPORT extern const char kDisableViewsTextfield[]; |
| 20 UI_EXPORT extern const char kEnableBezelTouch[]; | 18 UI_EXPORT extern const char kEnableBezelTouch[]; |
| 21 UI_EXPORT extern const char kEnableNewDialogStyle[]; | 19 UI_EXPORT extern const char kEnableNewDialogStyle[]; |
| 22 UI_EXPORT extern const char kEnableTouchDragDrop[]; | 20 UI_EXPORT extern const char kEnableTouchDragDrop[]; |
| 23 UI_EXPORT extern const char kEnableTouchEditing[]; | 21 UI_EXPORT extern const char kEnableTouchEditing[]; |
| 24 UI_EXPORT extern const char kEnableViewsTextfield[]; | 22 UI_EXPORT extern const char kEnableViewsTextfield[]; |
| 25 UI_EXPORT extern const char kForceDeviceScaleFactor[]; | 23 UI_EXPORT extern const char kForceDeviceScaleFactor[]; |
| 26 UI_EXPORT extern const char kHighlightMissingScaledResources[]; | 24 UI_EXPORT extern const char kHighlightMissingScaledResources[]; |
| 27 UI_EXPORT extern const char kLang[]; | 25 UI_EXPORT extern const char kLang[]; |
| 28 UI_EXPORT extern const char kLocalePak[]; | 26 UI_EXPORT extern const char kLocalePak[]; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 47 UI_EXPORT extern const char kDisableCoreAnimationPlugins[]; | 45 UI_EXPORT extern const char kDisableCoreAnimationPlugins[]; |
| 48 #endif | 46 #endif |
| 49 | 47 |
| 50 #if defined(TOOLKIT_VIEWS) && defined(OS_LINUX) | 48 #if defined(TOOLKIT_VIEWS) && defined(OS_LINUX) |
| 51 UI_EXPORT extern const char kTouchDevices[]; | 49 UI_EXPORT extern const char kTouchDevices[]; |
| 52 #endif | 50 #endif |
| 53 | 51 |
| 54 } // namespace switches | 52 } // namespace switches |
| 55 | 53 |
| 56 #endif // UI_BASE_UI_BASE_SWITCHES_H_ | 54 #endif // UI_BASE_UI_BASE_SWITCHES_H_ |
| OLD | NEW |