| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 ASH_EXPORT extern const char kAshDisableUsbChargerNotification[]; | 46 ASH_EXPORT extern const char kAshDisableUsbChargerNotification[]; |
| 47 #endif | 47 #endif |
| 48 ASH_EXPORT extern const char kAshEnableAdvancedGestures[]; | 48 ASH_EXPORT extern const char kAshEnableAdvancedGestures[]; |
| 49 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; | 49 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; |
| 50 ASH_EXPORT extern const char kAshEnableDockedWindows[]; | 50 ASH_EXPORT extern const char kAshEnableDockedWindows[]; |
| 51 #if defined(OS_LINUX) | 51 #if defined(OS_LINUX) |
| 52 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; | 52 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; |
| 53 #endif | 53 #endif |
| 54 ASH_EXPORT extern const char kAshEnableImmersiveFullscreen[]; | 54 ASH_EXPORT extern const char kAshEnableImmersiveFullscreen[]; |
| 55 ASH_EXPORT extern const char kAshEnableOak[]; | 55 ASH_EXPORT extern const char kAshEnableOak[]; |
| 56 ASH_EXPORT extern const char kAshEnableOverviewMode[]; |
| 56 ASH_EXPORT extern const char kAshEnableStickyEdges[]; | 57 ASH_EXPORT extern const char kAshEnableStickyEdges[]; |
| 57 ASH_EXPORT extern const char kAshEnableTrayDragging[]; | 58 ASH_EXPORT extern const char kAshEnableTrayDragging[]; |
| 58 ASH_EXPORT extern const char kAshEnableWorkspaceScrubbing[]; | 59 ASH_EXPORT extern const char kAshEnableWorkspaceScrubbing[]; |
| 59 ASH_EXPORT extern const char kAshForceMirrorMode[]; | 60 ASH_EXPORT extern const char kAshForceMirrorMode[]; |
| 60 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; | 61 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; |
| 61 ASH_EXPORT extern const char kAshHostWindowBounds[]; | 62 ASH_EXPORT extern const char kAshHostWindowBounds[]; |
| 62 ASH_EXPORT extern const char kAshImmersiveHideTabIndicators[]; | 63 ASH_EXPORT extern const char kAshImmersiveHideTabIndicators[]; |
| 63 ASH_EXPORT extern const char kAshSecondaryDisplayLayout[]; | 64 ASH_EXPORT extern const char kAshSecondaryDisplayLayout[]; |
| 64 ASH_EXPORT extern const char kAshTouchHud[]; | 65 ASH_EXPORT extern const char kAshTouchHud[]; |
| 65 ASH_EXPORT extern const char kAshUseAlternateShelfLayout[]; | 66 ASH_EXPORT extern const char kAshUseAlternateShelfLayout[]; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 82 | 83 |
| 83 // Returns true if a notification should appear when a low-power USB charger | 84 // Returns true if a notification should appear when a low-power USB charger |
| 84 // is connected. | 85 // is connected. |
| 85 ASH_EXPORT bool UseUsbChargerNotification(); | 86 ASH_EXPORT bool UseUsbChargerNotification(); |
| 86 #endif | 87 #endif |
| 87 | 88 |
| 88 } // namespace switches | 89 } // namespace switches |
| 89 } // namespace ash | 90 } // namespace ash |
| 90 | 91 |
| 91 #endif // ASH_ASH_SWITCHES_H_ | 92 #endif // ASH_ASH_SWITCHES_H_ |
| OLD | NEW |