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_ASH_SWITCHES_H_ | 5 #ifndef ASH_ASH_SWITCHES_H_ |
6 #define ASH_ASH_SWITCHES_H_ | 6 #define ASH_ASH_SWITCHES_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 ASH_EXPORT extern const char kAshCopyHostBackgroundAtBoot[]; | 22 ASH_EXPORT extern const char kAshCopyHostBackgroundAtBoot[]; |
23 ASH_EXPORT extern const char kAshDebugShortcuts[]; | 23 ASH_EXPORT extern const char kAshDebugShortcuts[]; |
24 ASH_EXPORT extern const char kAshDisableLockLayoutManager[]; | 24 ASH_EXPORT extern const char kAshDisableLockLayoutManager[]; |
25 ASH_EXPORT extern const char kAshDisableTouchExplorationMode[]; | 25 ASH_EXPORT extern const char kAshDisableTouchExplorationMode[]; |
26 #if defined(OS_CHROMEOS) | 26 #if defined(OS_CHROMEOS) |
27 ASH_EXPORT extern const char kAshEnableFullscreenAppList[]; | 27 ASH_EXPORT extern const char kAshEnableFullscreenAppList[]; |
28 ASH_EXPORT extern const char kAshEnableMagnifierKeyScroller[]; | 28 ASH_EXPORT extern const char kAshEnableMagnifierKeyScroller[]; |
29 #endif | 29 #endif |
30 ASH_EXPORT extern const char kAshEnableMirroredScreen[]; | 30 ASH_EXPORT extern const char kAshEnableMirroredScreen[]; |
31 ASH_EXPORT extern const char kAshEnablePowerButtonQuickLock[]; | 31 ASH_EXPORT extern const char kAshEnablePowerButtonQuickLock[]; |
| 32 ASH_EXPORT extern const char kAshEnableScreenRotationAnimation[]; |
32 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; | 33 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; |
33 ASH_EXPORT extern const char kAshEnableSystemSounds[]; | 34 ASH_EXPORT extern const char kAshEnableSystemSounds[]; |
34 ASH_EXPORT extern const char kAshEnableTouchViewTesting[]; | 35 ASH_EXPORT extern const char kAshEnableTouchViewTesting[]; |
35 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; | 36 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; |
36 ASH_EXPORT extern const char kAshHostWindowBounds[]; | 37 ASH_EXPORT extern const char kAshHostWindowBounds[]; |
37 ASH_EXPORT extern const char kAshSecondaryDisplayLayout[]; | 38 ASH_EXPORT extern const char kAshSecondaryDisplayLayout[]; |
38 ASH_EXPORT extern const char kAshTouchHud[]; | 39 ASH_EXPORT extern const char kAshTouchHud[]; |
39 ASH_EXPORT extern const char kAshUseFirstDisplayAsInternal[]; | 40 ASH_EXPORT extern const char kAshUseFirstDisplayAsInternal[]; |
40 ASH_EXPORT extern const char kAuraLegacyPowerButton[]; | 41 ASH_EXPORT extern const char kAuraLegacyPowerButton[]; |
41 #if defined(OS_WIN) | 42 #if defined(OS_WIN) |
42 ASH_EXPORT extern const char kForceAshToDesktop[]; | 43 ASH_EXPORT extern const char kForceAshToDesktop[]; |
43 #endif | 44 #endif |
44 | 45 |
45 // Returns true if items can be dragged off the shelf to unpin. | 46 // Returns true if items can be dragged off the shelf to unpin. |
46 ASH_EXPORT bool UseDragOffShelf(); | 47 ASH_EXPORT bool UseDragOffShelf(); |
47 | 48 |
48 #if defined(OS_CHROMEOS) | 49 #if defined(OS_CHROMEOS) |
49 // Returns true if a notification should appear when a low-power USB charger | 50 // Returns true if a notification should appear when a low-power USB charger |
50 // is connected. | 51 // is connected. |
51 ASH_EXPORT bool UseUsbChargerNotification(); | 52 ASH_EXPORT bool UseUsbChargerNotification(); |
52 #endif | 53 #endif |
53 | 54 |
54 } // namespace switches | 55 } // namespace switches |
55 } // namespace ash | 56 } // namespace ash |
56 | 57 |
57 #endif // ASH_ASH_SWITCHES_H_ | 58 #endif // ASH_ASH_SWITCHES_H_ |
OLD | NEW |