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 15 matching lines...) Expand all Loading... |
26 // to load. | 26 // to load. |
27 const char kAshCopyHostBackgroundAtBoot[] = "ash-copy-host-background-at-boot"; | 27 const char kAshCopyHostBackgroundAtBoot[] = "ash-copy-host-background-at-boot"; |
28 | 28 |
29 // Enable keyboard shortcuts useful for debugging. | 29 // Enable keyboard shortcuts useful for debugging. |
30 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; | 30 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; |
31 | 31 |
32 // Disables LockLayoutManager used for LockScreenContainer, return back to | 32 // Disables LockLayoutManager used for LockScreenContainer, return back to |
33 // WorkspaceLayoutManager. | 33 // WorkspaceLayoutManager. |
34 const char kAshDisableLockLayoutManager[] = "ash-disable-lock-layout-manager"; | 34 const char kAshDisableLockLayoutManager[] = "ash-disable-lock-layout-manager"; |
35 | 35 |
| 36 #if defined(OS_CHROMEOS) |
| 37 // Disable the support for WebContents to lock the screen orientation. |
| 38 const char kAshDisableScreenOrientationLock[] = |
| 39 "ash-disable-screen-orientation-lock"; |
| 40 #endif |
| 41 |
36 // Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be | 42 // Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be |
37 // turned on automatically when spoken feedback is enabled when this flag is | 43 // turned on automatically when spoken feedback is enabled when this flag is |
38 // set. | 44 // set. |
39 const char kAshDisableTouchExplorationMode[] = | 45 const char kAshDisableTouchExplorationMode[] = |
40 "ash-disable-touch-exploration-mode"; | 46 "ash-disable-touch-exploration-mode"; |
41 | 47 |
42 #if defined(OS_CHROMEOS) | 48 #if defined(OS_CHROMEOS) |
43 // Enables fullscreen app list if Ash is in maximize mode. | 49 // Enables fullscreen app list if Ash is in maximize mode. |
44 const char kAshEnableFullscreenAppList[] = "ash-enable-fullscreen-app-list"; | 50 const char kAshEnableFullscreenAppList[] = "ash-enable-fullscreen-app-list"; |
45 | 51 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 106 |
101 #if defined(OS_WIN) | 107 #if defined(OS_WIN) |
102 // Force Ash to open its root window on the desktop, even on Windows 8 where | 108 // Force Ash to open its root window on the desktop, even on Windows 8 where |
103 // it would normally end up in metro. | 109 // it would normally end up in metro. |
104 const char kForceAshToDesktop[] = "ash-force-desktop"; | 110 const char kForceAshToDesktop[] = "ash-force-desktop"; |
105 | 111 |
106 #endif | 112 #endif |
107 | 113 |
108 } // namespace switches | 114 } // namespace switches |
109 } // namespace ash | 115 } // namespace ash |
OLD | NEW |