| 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 // Enable keyboard shortcuts useful for debugging. | 10 // Enable keyboard shortcuts useful for debugging. |
| 11 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; | 11 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; |
| 12 | 12 |
| 13 // Enables the Oak tree viewer. | 13 // Enables the Oak tree viewer. |
| 14 const char kAshEnableOak[] = "ash-enable-oak"; | 14 const char kAshEnableOak[] = "ash-enable-oak"; |
| 15 | 15 |
| 16 // Disables extended desktop. | 16 // Enables Workspace2. |
| 17 const char kAshEnableWorkspace2[] = "ash-enable-workspace2"; |
| 18 |
| 17 const char kAshExtendedDesktopDisabled[] = "ash-extended-desktop-disabled"; | 19 const char kAshExtendedDesktopDisabled[] = "ash-extended-desktop-disabled"; |
| 18 | 20 |
| 19 // Disable using Ash notifications. | 21 // Disable using Ash notifications. |
| 20 const char kAshNotifyDisabled[] = "ash-notify-disabled"; | 22 const char kAshNotifyDisabled[] = "ash-notify-disabled"; |
| 21 | 23 |
| 22 // Enables the heads-up display for tracking touch points. | 24 // Enables the heads-up display for tracking touch points. |
| 23 const char kAshTouchHud[] = "ash-touch-hud"; | 25 const char kAshTouchHud[] = "ash-touch-hud"; |
| 24 | 26 |
| 25 // If present animations are disabled. | 27 // If present animations are disabled. |
| 26 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled"; | 28 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled"; |
| 27 | 29 |
| 28 // Use Google-style dialog box frames. | 30 // Use Google-style dialog box frames. |
| 29 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; | 31 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; |
| 30 | 32 |
| 31 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 33 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
| 32 // Standard hardware reports releases immediately after presses. If set, we | 34 // Standard hardware reports releases immediately after presses. If set, we |
| 33 // lock the screen or shutdown the system immediately in response to a press | 35 // lock the screen or shutdown the system immediately in response to a press |
| 34 // instead of displaying an interactive animation. | 36 // instead of displaying an interactive animation. |
| 35 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 37 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 36 | 38 |
| 37 // Avoid drawing drop shadows under windows. | 39 // Avoid drawing drop shadows under windows. |
| 38 const char kAuraNoShadows[] = "aura-no-shadows"; | 40 const char kAuraNoShadows[] = "aura-no-shadows"; |
| 39 | 41 |
| 40 } // namespace switches | 42 } // namespace switches |
| 41 } // namespace ash | 43 } // namespace ash |
| OLD | NEW |