| 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 24 matching lines...) Expand all Loading... |
| 35 ASH_EXPORT extern const char kAshDisableOverviewMode[]; | 35 ASH_EXPORT extern const char kAshDisableOverviewMode[]; |
| 36 ASH_EXPORT extern const char kAshDisableDragAndDropAppListToLauncher[]; | 36 ASH_EXPORT extern const char kAshDisableDragAndDropAppListToLauncher[]; |
| 37 #if defined(OS_CHROMEOS) | 37 #if defined(OS_CHROMEOS) |
| 38 ASH_EXPORT extern const char kAshDisableUsbChargerNotification[]; | 38 ASH_EXPORT extern const char kAshDisableUsbChargerNotification[]; |
| 39 ASH_EXPORT extern const char kAshEnableAudioDeviceMenu[]; | 39 ASH_EXPORT extern const char kAshEnableAudioDeviceMenu[]; |
| 40 #endif | 40 #endif |
| 41 ASH_EXPORT extern const char kAshEnableAdvancedGestures[]; | 41 ASH_EXPORT extern const char kAshEnableAdvancedGestures[]; |
| 42 ASH_EXPORT extern const char kAshEnableAlternateFrameCaptionButtonStyle[]; | 42 ASH_EXPORT extern const char kAshEnableAlternateFrameCaptionButtonStyle[]; |
| 43 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; | 43 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; |
| 44 ASH_EXPORT extern const char kAshEnableDockedWindows[]; | 44 ASH_EXPORT extern const char kAshEnableDockedWindows[]; |
| 45 ASH_EXPORT extern const char kAshEnableAppImmersiveFullscreen[]; |
| 45 #if defined(OS_CHROMEOS) | 46 #if defined(OS_CHROMEOS) |
| 46 ASH_EXPORT extern const char kAshEnableFullMultiProfileMode[]; | 47 ASH_EXPORT extern const char kAshEnableFullMultiProfileMode[]; |
| 47 #endif | 48 #endif |
| 48 #if defined(OS_LINUX) | 49 #if defined(OS_LINUX) |
| 49 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; | 50 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; |
| 50 #endif | 51 #endif |
| 51 ASH_EXPORT extern const char kAshEnableOak[]; | 52 ASH_EXPORT extern const char kAshEnableOak[]; |
| 52 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; | 53 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; |
| 53 ASH_EXPORT extern const char kAshEnableStickyEdges[]; | 54 ASH_EXPORT extern const char kAshEnableStickyEdges[]; |
| 54 ASH_EXPORT extern const char kAshEnableTrayDragging[]; | 55 ASH_EXPORT extern const char kAshEnableTrayDragging[]; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 100 |
| 100 // Returns true if a notification should appear when a low-power USB charger | 101 // Returns true if a notification should appear when a low-power USB charger |
| 101 // is connected. | 102 // is connected. |
| 102 ASH_EXPORT bool UseUsbChargerNotification(); | 103 ASH_EXPORT bool UseUsbChargerNotification(); |
| 103 #endif | 104 #endif |
| 104 | 105 |
| 105 } // namespace switches | 106 } // namespace switches |
| 106 } // namespace ash | 107 } // namespace ash |
| 107 | 108 |
| 108 #endif // ASH_ASH_SWITCHES_H_ | 109 #endif // ASH_ASH_SWITCHES_H_ |
| OLD | NEW |