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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace ash { | 9 namespace ash { |
10 namespace switches { | 10 namespace switches { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "ash-enable-magnifier-key-scroller"; | 54 "ash-enable-magnifier-key-scroller"; |
55 #endif | 55 #endif |
56 | 56 |
57 // Enables mirrored screen. | 57 // Enables mirrored screen. |
58 const char kAshEnableMirroredScreen[] = "ash-enable-mirrored-screen"; | 58 const char kAshEnableMirroredScreen[] = "ash-enable-mirrored-screen"; |
59 | 59 |
60 // Enables quick, non-cancellable locking of the screen when in maximize mode. | 60 // Enables quick, non-cancellable locking of the screen when in maximize mode. |
61 const char kAshEnablePowerButtonQuickLock[] = | 61 const char kAshEnablePowerButtonQuickLock[] = |
62 "ash-enable-power-button-quick-lock"; | 62 "ash-enable-power-button-quick-lock"; |
63 | 63 |
| 64 // Specifies the screen rotation animation to use. Possible values are: |
| 65 // "partial-rotation", "partial-rotation-slow", "full-rotation", and |
| 66 // "full-rotation-slow". See ash/rotator/screen_rotation_animator.cc for more |
| 67 // details. |
| 68 const char kAshEnableScreenRotationAnimation[] = |
| 69 "ash-screen-rotation-animation"; |
| 70 |
64 // Enables software based mirroring. | 71 // Enables software based mirroring. |
65 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 72 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
66 | 73 |
67 // Enables touch view testing. | 74 // Enables touch view testing. |
68 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this | 75 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this |
69 // flag is removed. | 76 // flag is removed. |
70 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; | 77 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; |
71 | 78 |
72 // When this flag is set, system sounds will be played whether the | 79 // When this flag is set, system sounds will be played whether the |
73 // ChromeVox is enabled or not. | 80 // ChromeVox is enabled or not. |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 | 113 |
107 #if defined(OS_WIN) | 114 #if defined(OS_WIN) |
108 // Force Ash to open its root window on the desktop, even on Windows 8 where | 115 // Force Ash to open its root window on the desktop, even on Windows 8 where |
109 // it would normally end up in metro. | 116 // it would normally end up in metro. |
110 const char kForceAshToDesktop[] = "ash-force-desktop"; | 117 const char kForceAshToDesktop[] = "ash-force-desktop"; |
111 | 118 |
112 #endif | 119 #endif |
113 | 120 |
114 } // namespace switches | 121 } // namespace switches |
115 } // namespace ash | 122 } // namespace ash |
OLD | NEW |