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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 "ash-enable-magnifier-key-scroller"; | 48 "ash-enable-magnifier-key-scroller"; |
49 #endif | 49 #endif |
50 | 50 |
51 // Enables mirrored screen. | 51 // Enables mirrored screen. |
52 const char kAshEnableMirroredScreen[] = "ash-enable-mirrored-screen"; | 52 const char kAshEnableMirroredScreen[] = "ash-enable-mirrored-screen"; |
53 | 53 |
54 // Enables quick, non-cancellable locking of the screen when in maximize mode. | 54 // Enables quick, non-cancellable locking of the screen when in maximize mode. |
55 const char kAshEnablePowerButtonQuickLock[] = | 55 const char kAshEnablePowerButtonQuickLock[] = |
56 "ash-enable-power-button-quick-lock"; | 56 "ash-enable-power-button-quick-lock"; |
57 | 57 |
58 // Specifies the screen rotation animation to use. | |
59 const char kAshEnableScreenRotationAnimation[] = | |
60 "ash-enable-screen-rotation_animation"; | |
oshima
2015/03/04 21:31:35
nit: ash-screen-rotation-animation (-type, or some
bruthig
2015/03/06 16:00:33
Done.
| |
61 | |
58 // Enables software based mirroring. | 62 // Enables software based mirroring. |
59 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 63 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
60 | 64 |
61 // Enables touch view testing. | 65 // Enables touch view testing. |
62 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this | 66 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this |
63 // flag is removed. | 67 // flag is removed. |
64 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; | 68 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; |
65 | 69 |
66 // When this flag is set, system sounds will be played whether the | 70 // When this flag is set, system sounds will be played whether the |
67 // ChromeVox is enabled or not. | 71 // ChromeVox is enabled or not. |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
100 | 104 |
101 #if defined(OS_WIN) | 105 #if defined(OS_WIN) |
102 // Force Ash to open its root window on the desktop, even on Windows 8 where | 106 // Force Ash to open its root window on the desktop, even on Windows 8 where |
103 // it would normally end up in metro. | 107 // it would normally end up in metro. |
104 const char kForceAshToDesktop[] = "ash-force-desktop"; | 108 const char kForceAshToDesktop[] = "ash-force-desktop"; |
105 | 109 |
106 #endif | 110 #endif |
107 | 111 |
108 } // namespace switches | 112 } // namespace switches |
109 } // namespace ash | 113 } // namespace ash |
OLD | NEW |