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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; | 50 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; |
51 ASH_EXPORT extern const char kAshEnableDockedWindows[]; | 51 ASH_EXPORT extern const char kAshEnableDockedWindows[]; |
52 #if defined(OS_LINUX) | 52 #if defined(OS_LINUX) |
53 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; | 53 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; |
54 #endif | 54 #endif |
55 ASH_EXPORT extern const char kAshEnableImmersiveFullscreen[]; | 55 ASH_EXPORT extern const char kAshEnableImmersiveFullscreen[]; |
56 #if defined(OS_CHROMEOS) | 56 #if defined(OS_CHROMEOS) |
57 ASH_EXPORT extern const char kAshEnableNewAudioHandler[]; | 57 ASH_EXPORT extern const char kAshEnableNewAudioHandler[]; |
58 #endif | 58 #endif |
59 ASH_EXPORT extern const char kAshEnableOak[]; | 59 ASH_EXPORT extern const char kAshEnableOak[]; |
| 60 ASH_EXPORT extern const char kAshEnableOverviewMode[]; |
60 ASH_EXPORT extern const char kAshEnableStickyEdges[]; | 61 ASH_EXPORT extern const char kAshEnableStickyEdges[]; |
61 ASH_EXPORT extern const char kAshEnableTrayDragging[]; | 62 ASH_EXPORT extern const char kAshEnableTrayDragging[]; |
62 ASH_EXPORT extern const char kAshForceMirrorMode[]; | 63 ASH_EXPORT extern const char kAshForceMirrorMode[]; |
63 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; | 64 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; |
64 ASH_EXPORT extern const char kAshHostWindowBounds[]; | 65 ASH_EXPORT extern const char kAshHostWindowBounds[]; |
65 ASH_EXPORT extern const char kAshImmersiveHideTabIndicators[]; | 66 ASH_EXPORT extern const char kAshImmersiveHideTabIndicators[]; |
66 ASH_EXPORT extern const char kAshSecondaryDisplayLayout[]; | 67 ASH_EXPORT extern const char kAshSecondaryDisplayLayout[]; |
67 ASH_EXPORT extern const char kAshTouchHud[]; | 68 ASH_EXPORT extern const char kAshTouchHud[]; |
68 ASH_EXPORT extern const char kAshUseAlternateShelfLayout[]; | 69 ASH_EXPORT extern const char kAshUseAlternateShelfLayout[]; |
69 ASH_EXPORT extern const char kAshUseFirstDisplayAsInternal[]; | 70 ASH_EXPORT extern const char kAshUseFirstDisplayAsInternal[]; |
(...skipping 15 matching lines...) Expand all Loading... |
85 | 86 |
86 // Returns true if a notification should appear when a low-power USB charger | 87 // Returns true if a notification should appear when a low-power USB charger |
87 // is connected. | 88 // is connected. |
88 ASH_EXPORT bool UseUsbChargerNotification(); | 89 ASH_EXPORT bool UseUsbChargerNotification(); |
89 #endif | 90 #endif |
90 | 91 |
91 } // namespace switches | 92 } // namespace switches |
92 } // namespace ash | 93 } // namespace ash |
93 | 94 |
94 #endif // ASH_ASH_SWITCHES_H_ | 95 #endif // ASH_ASH_SWITCHES_H_ |
OLD | NEW |