Chromium Code Reviews| 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 kDisableViewsTextfield[]; | 17 UI_EXPORT extern const char kDisableViewsTextfield[]; |
| 18 UI_EXPORT extern const char kEnableBezelTouch[]; | 18 UI_EXPORT extern const char kEnableBezelTouch[]; |
| 19 UI_EXPORT extern const char kEnableNewDialogStyle[]; | 19 UI_EXPORT extern const char kEnableNewDialogStyle[]; |
| 20 UI_EXPORT extern const char kEnableTouchDragDrop[]; | 20 UI_EXPORT extern const char kEnableTouchDragDrop[]; |
| 21 UI_EXPORT extern const char kDisableTouchDragDrop[]; | |
|
sky
2013/04/24 14:44:23
sort
varunjain
2013/04/24 18:09:25
Done.
| |
| 21 UI_EXPORT extern const char kEnableTouchEditing[]; | 22 UI_EXPORT extern const char kEnableTouchEditing[]; |
| 23 UI_EXPORT extern const char kDisableTouchEditing[]; | |
| 22 UI_EXPORT extern const char kEnableViewsTextfield[]; | 24 UI_EXPORT extern const char kEnableViewsTextfield[]; |
| 23 UI_EXPORT extern const char kForceDeviceScaleFactor[]; | 25 UI_EXPORT extern const char kForceDeviceScaleFactor[]; |
| 24 UI_EXPORT extern const char kHighlightMissingScaledResources[]; | 26 UI_EXPORT extern const char kHighlightMissingScaledResources[]; |
| 25 UI_EXPORT extern const char kLang[]; | 27 UI_EXPORT extern const char kLang[]; |
| 26 UI_EXPORT extern const char kLocalePak[]; | 28 UI_EXPORT extern const char kLocalePak[]; |
| 27 UI_EXPORT extern const char kNoMessageBox[]; | 29 UI_EXPORT extern const char kNoMessageBox[]; |
| 28 UI_EXPORT extern const char kTouchEvents[]; | 30 UI_EXPORT extern const char kTouchEvents[]; |
| 29 UI_EXPORT extern const char kTouchEventsAuto[]; | 31 UI_EXPORT extern const char kTouchEventsAuto[]; |
| 30 UI_EXPORT extern const char kTouchEventsDisabled[]; | 32 UI_EXPORT extern const char kTouchEventsDisabled[]; |
| 31 UI_EXPORT extern const char kTouchEventsEnabled[]; | 33 UI_EXPORT extern const char kTouchEventsEnabled[]; |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 45 UI_EXPORT extern const char kDisableCoreAnimationPlugins[]; | 47 UI_EXPORT extern const char kDisableCoreAnimationPlugins[]; |
| 46 #endif | 48 #endif |
| 47 | 49 |
| 48 #if defined(TOOLKIT_VIEWS) && defined(OS_LINUX) | 50 #if defined(TOOLKIT_VIEWS) && defined(OS_LINUX) |
| 49 UI_EXPORT extern const char kTouchDevices[]; | 51 UI_EXPORT extern const char kTouchDevices[]; |
| 50 #endif | 52 #endif |
| 51 | 53 |
| 52 } // namespace switches | 54 } // namespace switches |
| 53 | 55 |
| 54 #endif // UI_BASE_UI_BASE_SWITCHES_H_ | 56 #endif // UI_BASE_UI_BASE_SWITCHES_H_ |
| OLD | NEW |