| 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_COMMON_ASH_SWITCHES_H_ | 5 #ifndef ASH_COMMON_ASH_SWITCHES_H_ |
| 6 #define ASH_COMMON_ASH_SWITCHES_H_ | 6 #define ASH_COMMON_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 14 matching lines...) Expand all Loading... |
| 25 ASH_EXPORT extern const char kAshDisableMaximizeModeWindowBackdrop[]; | 25 ASH_EXPORT extern const char kAshDisableMaximizeModeWindowBackdrop[]; |
| 26 #if defined(OS_CHROMEOS) | 26 #if defined(OS_CHROMEOS) |
| 27 ASH_EXPORT extern const char kAshDisableScreenOrientationLock[]; | 27 ASH_EXPORT extern const char kAshDisableScreenOrientationLock[]; |
| 28 #endif | 28 #endif |
| 29 ASH_EXPORT extern const char kAshDisableTouchExplorationMode[]; | 29 ASH_EXPORT extern const char kAshDisableTouchExplorationMode[]; |
| 30 #if defined(OS_CHROMEOS) | 30 #if defined(OS_CHROMEOS) |
| 31 ASH_EXPORT extern const char kAshEnableFullscreenAppList[]; | 31 ASH_EXPORT extern const char kAshEnableFullscreenAppList[]; |
| 32 ASH_EXPORT extern const char kAshEnableMagnifierKeyScroller[]; | 32 ASH_EXPORT extern const char kAshEnableMagnifierKeyScroller[]; |
| 33 ASH_EXPORT extern const char kAshEnablePalette[]; | 33 ASH_EXPORT extern const char kAshEnablePalette[]; |
| 34 ASH_EXPORT extern const char kAshEnablePaletteOnAllDisplays[]; | 34 ASH_EXPORT extern const char kAshEnablePaletteOnAllDisplays[]; |
| 35 ASH_EXPORT extern const char kAshEnableTabletPowerButton[]; | |
| 36 #endif | 35 #endif |
| 37 ASH_EXPORT extern const char kAshEnableTouchView[]; | 36 ASH_EXPORT extern const char kAshEnableTouchView[]; |
| 38 ASH_EXPORT extern const char kAshEnableMirroredScreen[]; | 37 ASH_EXPORT extern const char kAshEnableMirroredScreen[]; |
| 39 ASH_EXPORT extern const char kAshDisableStableOverviewOrder[]; | 38 ASH_EXPORT extern const char kAshDisableStableOverviewOrder[]; |
| 40 ASH_EXPORT extern const char kAshEnableTouchViewTesting[]; | 39 ASH_EXPORT extern const char kAshEnableTouchViewTesting[]; |
| 41 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; | 40 ASH_EXPORT extern const char kAshHideNotificationsForFactory[]; |
| 42 ASH_EXPORT extern const char kAshMaterialDesign[]; | 41 ASH_EXPORT extern const char kAshMaterialDesign[]; |
| 43 ASH_EXPORT extern const char kAshMaterialDesignDisabled[]; | 42 ASH_EXPORT extern const char kAshMaterialDesignDisabled[]; |
| 44 ASH_EXPORT extern const char kAshMaterialDesignEnabled[]; | 43 ASH_EXPORT extern const char kAshMaterialDesignEnabled[]; |
| 45 ASH_EXPORT extern const char kAshMaterialDesignExperimental[]; | 44 ASH_EXPORT extern const char kAshMaterialDesignExperimental[]; |
| 46 ASH_EXPORT extern const char kAshTouchHud[]; | 45 ASH_EXPORT extern const char kAshTouchHud[]; |
| 47 ASH_EXPORT extern const char kAuraLegacyPowerButton[]; | 46 ASH_EXPORT extern const char kAuraLegacyPowerButton[]; |
| 48 | 47 |
| 49 #if defined(OS_CHROMEOS) | 48 #if defined(OS_CHROMEOS) |
| 50 // True if the pointer (cursor) position should be kept inside root windows. | 49 // True if the pointer (cursor) position should be kept inside root windows. |
| 51 ASH_EXPORT bool ConstrainPointerToRoot(); | 50 ASH_EXPORT bool ConstrainPointerToRoot(); |
| 52 #endif | 51 #endif |
| 53 | 52 |
| 54 } // namespace switches | 53 } // namespace switches |
| 55 } // namespace ash | 54 } // namespace ash |
| 56 | 55 |
| 57 #endif // ASH_COMMON_ASH_SWITCHES_H_ | 56 #endif // ASH_COMMON_ASH_SWITCHES_H_ |
| OLD | NEW |