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 #ifndef ASH_COMMON_ASH_SWITCHES_H_ | 5 #ifndef ASH_COMMON_ASH_SWITCHES_H_ |
6 #define ASH_COMMON_ASH_SWITCHES_H_ | 6 #define ASH_COMMON_ASH_SWITCHES_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 | 9 |
10 namespace ash { | 10 namespace ash { |
(...skipping 10 matching lines...) Expand all Loading... |
21 ASH_EXPORT extern const char kAshCopyHostBackgroundAtBoot[]; | 21 ASH_EXPORT extern const char kAshCopyHostBackgroundAtBoot[]; |
22 ASH_EXPORT extern const char kAshDebugShortcuts[]; | 22 ASH_EXPORT extern const char kAshDebugShortcuts[]; |
23 ASH_EXPORT extern const char kAshDeveloperShortcuts[]; | 23 ASH_EXPORT extern const char kAshDeveloperShortcuts[]; |
24 ASH_EXPORT extern const char kAshDisableMaximizeModeWindowBackdrop[]; | 24 ASH_EXPORT extern const char kAshDisableMaximizeModeWindowBackdrop[]; |
25 ASH_EXPORT extern const char kAshDisableScreenOrientationLock[]; | 25 ASH_EXPORT extern const char kAshDisableScreenOrientationLock[]; |
26 ASH_EXPORT extern const char kAshDisableTouchExplorationMode[]; | 26 ASH_EXPORT extern const char kAshDisableTouchExplorationMode[]; |
27 ASH_EXPORT extern const char kAshEnableMagnifierKeyScroller[]; | 27 ASH_EXPORT extern const char kAshEnableMagnifierKeyScroller[]; |
28 ASH_EXPORT extern const char kAshEnablePaletteOnAllDisplays[]; | 28 ASH_EXPORT extern const char kAshEnablePaletteOnAllDisplays[]; |
29 ASH_EXPORT extern const char kAshEnableTouchView[]; | 29 ASH_EXPORT extern const char kAshEnableTouchView[]; |
30 ASH_EXPORT extern const char kAshEnableMirroredScreen[]; | 30 ASH_EXPORT extern const char kAshEnableMirroredScreen[]; |
| 31 ASH_EXPORT extern const char kAshEnableSmoothScreenRotation[]; |
31 ASH_EXPORT extern const char kAshEstimatedPresentationDelay[]; | 32 ASH_EXPORT extern const char kAshEstimatedPresentationDelay[]; |
32 ASH_EXPORT extern const char kAshForceEnablePalette[]; | 33 ASH_EXPORT extern const char kAshForceEnablePalette[]; |
33 ASH_EXPORT extern const char kAshForceTabletMode[]; | 34 ASH_EXPORT extern const char kAshForceTabletMode[]; |
34 ASH_EXPORT extern const char kAshForceTabletModeAuto[]; | 35 ASH_EXPORT extern const char kAshForceTabletModeAuto[]; |
35 ASH_EXPORT extern const char kAshForceTabletModeClamshell[]; | 36 ASH_EXPORT extern const char kAshForceTabletModeClamshell[]; |
36 ASH_EXPORT extern const char kAshForceTabletModeTouchView[]; | 37 ASH_EXPORT extern const char kAshForceTabletModeTouchView[]; |
37 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; | 38 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; |
38 ASH_EXPORT extern const char kAshShelfColor[]; | 39 ASH_EXPORT extern const char kAshShelfColor[]; |
39 ASH_EXPORT extern const char kAshShelfColorLightMuted[]; | 40 ASH_EXPORT extern const char kAshShelfColorLightMuted[]; |
40 ASH_EXPORT extern const char kAshShelfColorLightVibrant[]; | 41 ASH_EXPORT extern const char kAshShelfColorLightVibrant[]; |
41 ASH_EXPORT extern const char kAshShelfColorNormalMuted[]; | 42 ASH_EXPORT extern const char kAshShelfColorNormalMuted[]; |
42 ASH_EXPORT extern const char kAshShelfColorNormalVibrant[]; | 43 ASH_EXPORT extern const char kAshShelfColorNormalVibrant[]; |
43 ASH_EXPORT extern const char kAshShelfColorDarkMuted[]; | 44 ASH_EXPORT extern const char kAshShelfColorDarkMuted[]; |
44 ASH_EXPORT extern const char kAshShelfColorDarkVibrant[]; | 45 ASH_EXPORT extern const char kAshShelfColorDarkVibrant[]; |
45 ASH_EXPORT extern const char kAshTouchHud[]; | 46 ASH_EXPORT extern const char kAshTouchHud[]; |
46 ASH_EXPORT extern const char kAuraLegacyPowerButton[]; | 47 ASH_EXPORT extern const char kAuraLegacyPowerButton[]; |
47 | 48 |
48 // True if the pointer (cursor) position should be kept inside root windows. | 49 // True if the pointer (cursor) position should be kept inside root windows. |
49 ASH_EXPORT bool ConstrainPointerToRoot(); | 50 ASH_EXPORT bool ConstrainPointerToRoot(); |
50 | 51 |
51 } // namespace switches | 52 } // namespace switches |
52 } // namespace ash | 53 } // namespace ash |
53 | 54 |
54 #endif // ASH_COMMON_ASH_SWITCHES_H_ | 55 #endif // ASH_COMMON_ASH_SWITCHES_H_ |
OLD | NEW |