| 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 // Variation of boot animation that uses Tween::EASE_OUT_2. |
| 11 const char kAshBootAnimationFunction2[] = "ash-boot-animation-function2"; |
| 12 |
| 13 // Variation of boot animation that uses Tween::EASE_OUT_3. |
| 14 const char kAshBootAnimationFunction3[] = "ash-boot-animation-function3"; |
| 15 |
| 10 // Constrains the pointer movement within a root window on desktop. | 16 // Constrains the pointer movement within a root window on desktop. |
| 11 const char kAshConstrainPointerToRoot[] = "ash-constrain-pointer-to-root"; | 17 const char kAshConstrainPointerToRoot[] = "ash-constrain-pointer-to-root"; |
| 12 | 18 |
| 13 // Enable keyboard shortcuts useful for debugging. | 19 // Enable keyboard shortcuts useful for debugging. |
| 14 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; | 20 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; |
| 15 | 21 |
| 16 // Disables Workspace2. | 22 // Disables Workspace2. |
| 17 const char kAshDisableWorkspace2[] = "ash-disable-workspace2"; | 23 const char kAshDisableWorkspace2[] = "ash-disable-workspace2"; |
| 18 | 24 |
| 19 // Disables boot animation v2, go back to v1. | 25 // Disables boot animation v2, go back to v1. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 47 // Standard hardware reports releases immediately after presses. If set, we | 53 // Standard hardware reports releases immediately after presses. If set, we |
| 48 // lock the screen or shutdown the system immediately in response to a press | 54 // lock the screen or shutdown the system immediately in response to a press |
| 49 // instead of displaying an interactive animation. | 55 // instead of displaying an interactive animation. |
| 50 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 56 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 51 | 57 |
| 52 // Avoid drawing drop shadows under windows. | 58 // Avoid drawing drop shadows under windows. |
| 53 const char kAuraNoShadows[] = "aura-no-shadows"; | 59 const char kAuraNoShadows[] = "aura-no-shadows"; |
| 54 | 60 |
| 55 } // namespace switches | 61 } // namespace switches |
| 56 } // namespace ash | 62 } // namespace ash |
| OLD | NEW |