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 25 matching lines...) Expand all Loading... | |
36 ASH_EXPORT extern const char kAshDisableDragOffShelf[]; | 36 ASH_EXPORT extern const char kAshDisableDragOffShelf[]; |
37 ASH_EXPORT extern const char kAshDisableOverviewMode[]; | 37 ASH_EXPORT extern const char kAshDisableOverviewMode[]; |
38 ASH_EXPORT extern const char kAshDisableDragAndDropAppListToLauncher[]; | 38 ASH_EXPORT extern const char kAshDisableDragAndDropAppListToLauncher[]; |
39 #if defined(OS_CHROMEOS) | 39 #if defined(OS_CHROMEOS) |
40 ASH_EXPORT extern const char kAshDisableUsbChargerNotification[]; | 40 ASH_EXPORT extern const char kAshDisableUsbChargerNotification[]; |
41 ASH_EXPORT extern const char kAshEnableAudioDeviceMenu[]; | 41 ASH_EXPORT extern const char kAshEnableAudioDeviceMenu[]; |
42 #endif | 42 #endif |
43 ASH_EXPORT extern const char kAshEnableAdvancedGestures[]; | 43 ASH_EXPORT extern const char kAshEnableAdvancedGestures[]; |
44 ASH_EXPORT extern const char kAshEnableAlternateFrameCaptionButtonStyle[]; | 44 ASH_EXPORT extern const char kAshEnableAlternateFrameCaptionButtonStyle[]; |
45 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; | 45 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; |
46 ASH_EXPORT extern const char kAshEnableAppImmersiveFullscreen[]; | |
oshima
2013/11/08 23:25:32
chrome/common/chrome_switches?
pkotwicz
2013/11/09 00:09:02
I am keeping it here. In terms of precedent, --ash
oshima
2013/11/09 01:11:18
That flag shouldn't have been in ash first place I
pkotwicz
2013/11/13 00:10:13
We unfortunately need to keep the flag in ash. I w
oshima
2013/11/13 07:21:36
Ok.
| |
46 #if defined(OS_CHROMEOS) | 47 #if defined(OS_CHROMEOS) |
47 ASH_EXPORT extern const char kAshEnableFullMultiProfileMode[]; | 48 ASH_EXPORT extern const char kAshEnableFullMultiProfileMode[]; |
48 #endif | 49 #endif |
49 #if defined(OS_LINUX) | 50 #if defined(OS_LINUX) |
50 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; | 51 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; |
51 #endif | 52 #endif |
52 ASH_EXPORT extern const char kAshEnableOak[]; | 53 ASH_EXPORT extern const char kAshEnableOak[]; |
53 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; | 54 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; |
54 ASH_EXPORT extern const char kAshEnableStickyEdges[]; | 55 ASH_EXPORT extern const char kAshEnableStickyEdges[]; |
55 ASH_EXPORT extern const char kAshEnableTrayDragging[]; | 56 ASH_EXPORT extern const char kAshEnableTrayDragging[]; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
103 | 104 |
104 // Returns true if a notification should appear when a low-power USB charger | 105 // Returns true if a notification should appear when a low-power USB charger |
105 // is connected. | 106 // is connected. |
106 ASH_EXPORT bool UseUsbChargerNotification(); | 107 ASH_EXPORT bool UseUsbChargerNotification(); |
107 #endif | 108 #endif |
108 | 109 |
109 } // namespace switches | 110 } // namespace switches |
110 } // namespace ash | 111 } // namespace ash |
111 | 112 |
112 #endif // ASH_ASH_SWITCHES_H_ | 113 #endif // ASH_ASH_SWITCHES_H_ |
OLD | NEW |