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 13 matching lines...) Expand all Loading... |
24 ASH_EXPORT extern const char kAshDefaultWallpaperIsOem[]; | 24 ASH_EXPORT extern const char kAshDefaultWallpaperIsOem[]; |
25 ASH_EXPORT extern const char kAshDefaultWallpaperLarge[]; | 25 ASH_EXPORT extern const char kAshDefaultWallpaperLarge[]; |
26 ASH_EXPORT extern const char kAshDefaultWallpaperSmall[]; | 26 ASH_EXPORT extern const char kAshDefaultWallpaperSmall[]; |
27 ASH_EXPORT extern const char kAshDisableAlternateFrameCaptionButtonStyle[]; | 27 ASH_EXPORT extern const char kAshDisableAlternateFrameCaptionButtonStyle[]; |
28 | 28 |
29 #if defined(OS_CHROMEOS) | 29 #if defined(OS_CHROMEOS) |
30 ASH_EXPORT extern const char kAshDisableAudioDeviceMenu[]; | 30 ASH_EXPORT extern const char kAshDisableAudioDeviceMenu[]; |
31 #endif | 31 #endif |
32 | 32 |
33 ASH_EXPORT extern const char kAshDisableDockedWindows[]; | 33 ASH_EXPORT extern const char kAshDisableDockedWindows[]; |
34 ASH_EXPORT extern const char kAshDisableOverviewMode[]; | |
35 ASH_EXPORT extern const char kAshEnableAlternateFrameCaptionButtonStyle[]; | 34 ASH_EXPORT extern const char kAshEnableAlternateFrameCaptionButtonStyle[]; |
36 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; | 35 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; |
37 ASH_EXPORT extern const char kAshEnableImmersiveFullscreenForAllWindows[]; | 36 ASH_EXPORT extern const char kAshEnableImmersiveFullscreenForAllWindows[]; |
38 ASH_EXPORT extern const char kAshEnableImmersiveFullscreenForBrowserOnly[]; | 37 ASH_EXPORT extern const char kAshEnableImmersiveFullscreenForBrowserOnly[]; |
39 #if defined(OS_CHROMEOS) | 38 #if defined(OS_CHROMEOS) |
40 ASH_EXPORT extern const char kAshEnableMagnifierKeyScroller[]; | 39 ASH_EXPORT extern const char kAshEnableMagnifierKeyScroller[]; |
41 ASH_EXPORT extern const char kAshEnableMultiUserTray[]; | 40 ASH_EXPORT extern const char kAshEnableMultiUserTray[]; |
42 #endif | 41 #endif |
43 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; | 42 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; |
44 ASH_EXPORT extern const char kAshEnableSystemSounds[]; | 43 ASH_EXPORT extern const char kAshEnableSystemSounds[]; |
(...skipping 15 matching lines...) Expand all Loading... |
60 // maximize, restore, close) should be used. | 59 // maximize, restore, close) should be used. |
61 ASH_EXPORT bool UseAlternateFrameCaptionButtonStyle(); | 60 ASH_EXPORT bool UseAlternateFrameCaptionButtonStyle(); |
62 | 61 |
63 // Returns true if items can be dragged off the shelf to unpin. | 62 // Returns true if items can be dragged off the shelf to unpin. |
64 ASH_EXPORT bool UseDragOffShelf(); | 63 ASH_EXPORT bool UseDragOffShelf(); |
65 | 64 |
66 // Returns true if all windows (barring frameless apps) can be put into | 65 // Returns true if all windows (barring frameless apps) can be put into |
67 // immersive fullscreen via <F4>. | 66 // immersive fullscreen via <F4>. |
68 ASH_EXPORT bool UseImmersiveFullscreenForAllWindows(); | 67 ASH_EXPORT bool UseImmersiveFullscreenForAllWindows(); |
69 | 68 |
70 // Returns true if overview mode should be activated for window switching. | |
71 ASH_EXPORT bool UseOverviewMode(); | |
72 | |
73 // Returns true if docked windows feature is enabled. | 69 // Returns true if docked windows feature is enabled. |
74 ASH_EXPORT bool UseDockedWindows(); | 70 ASH_EXPORT bool UseDockedWindows(); |
75 | 71 |
76 #if defined(OS_CHROMEOS) | 72 #if defined(OS_CHROMEOS) |
77 // Returns true if a notification should appear when a low-power USB charger | 73 // Returns true if a notification should appear when a low-power USB charger |
78 // is connected. | 74 // is connected. |
79 ASH_EXPORT bool UseUsbChargerNotification(); | 75 ASH_EXPORT bool UseUsbChargerNotification(); |
80 #endif | 76 #endif |
81 | 77 |
82 } // namespace switches | 78 } // namespace switches |
83 } // namespace ash | 79 } // namespace ash |
84 | 80 |
85 #endif // ASH_ASH_SWITCHES_H_ | 81 #endif // ASH_ASH_SWITCHES_H_ |
OLD | NEW |