| 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 #include "ash/ash_switches.h" | 5 #include "ash/ash_switches.h" |
| 6 | 6 |
| 7 namespace ash { | 7 namespace ash { |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Constrains the pointer movement within a root window on desktop. | 10 // Constrains the pointer movement within a root window on desktop. |
| 11 const char kAshConstrainPointerToRoot[] = "ash-constrain-pointer-to-root"; | 11 const char kAshConstrainPointerToRoot[] = "ash-constrain-pointer-to-root"; |
| 12 | 12 |
| 13 // Enable keyboard shortcuts useful for debugging. | 13 // Enable keyboard shortcuts useful for debugging. |
| 14 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; | 14 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; |
| 15 | 15 |
| 16 // Disables Workspace2. | 16 // Disables Workspace2. |
| 17 const char kAshDisableWorkspace2[] = "ash-disable-workspace2"; | 17 const char kAshDisableWorkspace2[] = "ash-disable-workspace2"; |
| 18 | 18 |
| 19 // Disables panel fitting (used for mirror mode). |
| 20 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; |
| 21 |
| 19 // Enable advanced gestures (e.g. for window management). | 22 // Enable advanced gestures (e.g. for window management). |
| 20 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; | 23 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; |
| 21 | 24 |
| 22 // Enables the Oak tree viewer. | 25 // Enables the Oak tree viewer. |
| 23 const char kAshEnableOak[] = "ash-enable-oak"; | 26 const char kAshEnableOak[] = "ash-enable-oak"; |
| 24 | 27 |
| 25 // Disable using Ash notifications. | 28 // Disable using Ash notifications. |
| 26 const char kAshNotifyDisabled[] = "ash-notify-disabled"; | 29 const char kAshNotifyDisabled[] = "ash-notify-disabled"; |
| 27 | 30 |
| 28 // Specifies the layout mode and offsets for the secondary display for | 31 // Specifies the layout mode and offsets for the secondary display for |
| (...skipping 15 matching lines...) Expand all Loading... |
| 44 // Standard hardware reports releases immediately after presses. If set, we | 47 // Standard hardware reports releases immediately after presses. If set, we |
| 45 // lock the screen or shutdown the system immediately in response to a press | 48 // lock the screen or shutdown the system immediately in response to a press |
| 46 // instead of displaying an interactive animation. | 49 // instead of displaying an interactive animation. |
| 47 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 50 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 48 | 51 |
| 49 // Avoid drawing drop shadows under windows. | 52 // Avoid drawing drop shadows under windows. |
| 50 const char kAuraNoShadows[] = "aura-no-shadows"; | 53 const char kAuraNoShadows[] = "aura-no-shadows"; |
| 51 | 54 |
| 52 } // namespace switches | 55 } // namespace switches |
| 53 } // namespace ash | 56 } // namespace ash |
| OLD | NEW |