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 kDisableNewDialogStyle[]; | |
17 UI_EXPORT extern const char kDisableTouchAdjustment[]; | 16 UI_EXPORT extern const char kDisableTouchAdjustment[]; |
18 UI_EXPORT extern const char kDisableTouchDragDrop[]; | 17 UI_EXPORT extern const char kDisableTouchDragDrop[]; |
19 UI_EXPORT extern const char kDisableTouchEditing[]; | 18 UI_EXPORT extern const char kDisableTouchEditing[]; |
20 UI_EXPORT extern const char kDisableViewsTextfield[]; | 19 UI_EXPORT extern const char kDisableViewsTextfield[]; |
21 UI_EXPORT extern const char kEnableNewDialogStyle[]; | |
22 UI_EXPORT extern const char kEnableScrollPrediction[]; | 20 UI_EXPORT extern const char kEnableScrollPrediction[]; |
23 UI_EXPORT extern const char kEnableTouchDragDrop[]; | 21 UI_EXPORT extern const char kEnableTouchDragDrop[]; |
24 UI_EXPORT extern const char kEnableTouchEditing[]; | 22 UI_EXPORT extern const char kEnableTouchEditing[]; |
25 UI_EXPORT extern const char kEnableViewsTextfield[]; | 23 UI_EXPORT extern const char kEnableViewsTextfield[]; |
26 UI_EXPORT extern const char kForceDeviceScaleFactor[]; | 24 UI_EXPORT extern const char kForceDeviceScaleFactor[]; |
27 UI_EXPORT extern const char kHighDPISupport[]; | 25 UI_EXPORT extern const char kHighDPISupport[]; |
28 UI_EXPORT extern const char kHighlightMissingScaledResources[]; | 26 UI_EXPORT extern const char kHighlightMissingScaledResources[]; |
29 UI_EXPORT extern const char kLang[]; | 27 UI_EXPORT extern const char kLang[]; |
30 UI_EXPORT extern const char kLocalePak[]; | 28 UI_EXPORT extern const char kLocalePak[]; |
31 UI_EXPORT extern const char kNoMessageBox[]; | 29 UI_EXPORT extern const char kNoMessageBox[]; |
(...skipping 11 matching lines...) Expand all Loading... |
43 UI_EXPORT extern const char kTouchCalibration[]; | 41 UI_EXPORT extern const char kTouchCalibration[]; |
44 #endif | 42 #endif |
45 | 43 |
46 #if defined(TOOLKIT_VIEWS) && defined(OS_LINUX) | 44 #if defined(TOOLKIT_VIEWS) && defined(OS_LINUX) |
47 UI_EXPORT extern const char kTouchDevices[]; | 45 UI_EXPORT extern const char kTouchDevices[]; |
48 #endif | 46 #endif |
49 | 47 |
50 } // namespace switches | 48 } // namespace switches |
51 | 49 |
52 #endif // UI_BASE_UI_BASE_SWITCHES_H_ | 50 #endif // UI_BASE_UI_BASE_SWITCHES_H_ |
OLD | NEW |