| 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 28 matching lines...) Expand all Loading... |
| 39 ASH_EXPORT extern const char kAshEnableTrayDragging[]; | 39 ASH_EXPORT extern const char kAshEnableTrayDragging[]; |
| 40 ASH_EXPORT extern const char kAshGuestWallpaperLarge[]; | 40 ASH_EXPORT extern const char kAshGuestWallpaperLarge[]; |
| 41 ASH_EXPORT extern const char kAshGuestWallpaperSmall[]; | 41 ASH_EXPORT extern const char kAshGuestWallpaperSmall[]; |
| 42 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; | 42 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; |
| 43 ASH_EXPORT extern const char kAshHostWindowBounds[]; | 43 ASH_EXPORT extern const char kAshHostWindowBounds[]; |
| 44 ASH_EXPORT extern const char kAshSecondaryDisplayLayout[]; | 44 ASH_EXPORT extern const char kAshSecondaryDisplayLayout[]; |
| 45 ASH_EXPORT extern const char kAshTouchHud[]; | 45 ASH_EXPORT extern const char kAshTouchHud[]; |
| 46 ASH_EXPORT extern const char kAshUseAlternateShelfLayout[]; | 46 ASH_EXPORT extern const char kAshUseAlternateShelfLayout[]; |
| 47 ASH_EXPORT extern const char kAshUseFirstDisplayAsInternal[]; | 47 ASH_EXPORT extern const char kAshUseFirstDisplayAsInternal[]; |
| 48 ASH_EXPORT extern const char kAuraLegacyPowerButton[]; | 48 ASH_EXPORT extern const char kAuraLegacyPowerButton[]; |
| 49 ASH_EXPORT extern const char kAshUserImagePath[]; |
| 49 #if defined(OS_WIN) | 50 #if defined(OS_WIN) |
| 50 ASH_EXPORT extern const char kForceAshToDesktop[]; | 51 ASH_EXPORT extern const char kForceAshToDesktop[]; |
| 51 #endif | 52 #endif |
| 52 | 53 |
| 53 // Returns true if the alternate visual style for the caption buttons (minimize, | 54 // Returns true if the alternate visual style for the caption buttons (minimize, |
| 54 // maximize, restore, close) should be used. | 55 // maximize, restore, close) should be used. |
| 55 ASH_EXPORT bool UseAlternateFrameCaptionButtonStyle(); | 56 ASH_EXPORT bool UseAlternateFrameCaptionButtonStyle(); |
| 56 | 57 |
| 57 // Returns true if the alternate shelf layout should be used. | 58 // Returns true if the alternate shelf layout should be used. |
| 58 ASH_EXPORT bool UseAlternateShelfLayout(); | 59 ASH_EXPORT bool UseAlternateShelfLayout(); |
| 59 | 60 |
| 60 // Returns true if items can be dragged off the shelf to unpin. | 61 // Returns true if items can be dragged off the shelf to unpin. |
| 61 ASH_EXPORT bool UseDragOffShelf(); | 62 ASH_EXPORT bool UseDragOffShelf(); |
| 62 | 63 |
| 63 // Returns true if docked windows feature is enabled. | 64 // Returns true if docked windows feature is enabled. |
| 64 ASH_EXPORT bool UseDockedWindows(); | 65 ASH_EXPORT bool UseDockedWindows(); |
| 65 | 66 |
| 66 #if defined(OS_CHROMEOS) | 67 #if defined(OS_CHROMEOS) |
| 67 // Returns true if a notification should appear when a low-power USB charger | 68 // Returns true if a notification should appear when a low-power USB charger |
| 68 // is connected. | 69 // is connected. |
| 69 ASH_EXPORT bool UseUsbChargerNotification(); | 70 ASH_EXPORT bool UseUsbChargerNotification(); |
| 70 #endif | 71 #endif |
| 71 | 72 |
| 72 } // namespace switches | 73 } // namespace switches |
| 73 } // namespace ash | 74 } // namespace ash |
| 74 | 75 |
| 75 #endif // ASH_ASH_SWITCHES_H_ | 76 #endif // ASH_ASH_SWITCHES_H_ |
| OLD | NEW |