| 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. | 10 // Variation of boot animation that uses Tween::EASE_OUT_2. |
| 11 const char kAshBootAnimationFunction2[] = "ash-boot-animation-function2"; | 11 const char kAshBootAnimationFunction2[] = "ash-boot-animation-function2"; |
| 12 | 12 |
| 13 // Variation of boot animation that uses Tween::EASE_OUT_3. | 13 // Variation of boot animation that uses Tween::EASE_OUT_3. |
| 14 const char kAshBootAnimationFunction3[] = "ash-boot-animation-function3"; | 14 const char kAshBootAnimationFunction3[] = "ash-boot-animation-function3"; |
| 15 | 15 |
| 16 // Constrains the pointer movement within a root window on desktop. | 16 // Constrains the pointer movement within a root window on desktop. |
| 17 const char kAshConstrainPointerToRoot[] = "ash-constrain-pointer-to-root"; | 17 const char kAshConstrainPointerToRoot[] = "ash-constrain-pointer-to-root"; |
| 18 | 18 |
| 19 // Copies the host window's content to the system background layer at startup. | 19 // Copies the host window's content to the system background layer at startup. |
| 20 // Can make boot slightly slower, but also hides an even-longer awkward period | 20 // Can make boot slightly slower, but also hides an even-longer awkward period |
| 21 // where we display a white background if the login wallpaper takes a long time | 21 // where we display a white background if the login wallpaper takes a long time |
| 22 // to load. | 22 // to load. |
| 23 const char kAshCopyHostBackgroundAtBoot[] = "ash-copy-host-background-at-boot"; | 23 const char kAshCopyHostBackgroundAtBoot[] = "ash-copy-host-background-at-boot"; |
| 24 | 24 |
| 25 // Enable keyboard shortcuts useful for debugging. | 25 // Enable keyboard shortcuts useful for debugging. |
| 26 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; | 26 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; |
| 27 | 27 |
| 28 // Disable support for auto window placement. | |
| 29 const char kAshDisableAutoWindowPlacement[] = | |
| 30 "ash-enable-auto-window-placement"; | |
| 31 | |
| 32 // Disables boot animation v2, go back to v1. | 28 // Disables boot animation v2, go back to v1. |
| 33 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; | 29 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; |
| 34 | 30 |
| 35 // Disables panel fitting (used for mirror mode). | 31 // Disables panel fitting (used for mirror mode). |
| 36 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; | 32 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; |
| 37 | 33 |
| 38 // Enable advanced gestures (e.g. for window management). | 34 // Enable advanced gestures (e.g. for window management). |
| 39 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; | 35 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; |
| 40 | 36 |
| 41 // Enables the Oak tree viewer. | 37 // Enables the Oak tree viewer. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 69 // Standard hardware reports releases immediately after presses. If set, we | 65 // Standard hardware reports releases immediately after presses. If set, we |
| 70 // lock the screen or shutdown the system immediately in response to a press | 66 // lock the screen or shutdown the system immediately in response to a press |
| 71 // instead of displaying an interactive animation. | 67 // instead of displaying an interactive animation. |
| 72 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 68 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 73 | 69 |
| 74 // Avoid drawing drop shadows under windows. | 70 // Avoid drawing drop shadows under windows. |
| 75 const char kAuraNoShadows[] = "aura-no-shadows"; | 71 const char kAuraNoShadows[] = "aura-no-shadows"; |
| 76 | 72 |
| 77 } // namespace switches | 73 } // namespace switches |
| 78 } // namespace ash | 74 } // namespace ash |
| OLD | NEW |