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 11 matching lines...) Expand all Loading... |
22 | 22 |
23 // Copies the host window's content to the system background layer at startup. | 23 // Copies the host window's content to the system background layer at startup. |
24 // Can make boot slightly slower, but also hides an even-longer awkward period | 24 // Can make boot slightly slower, but also hides an even-longer awkward period |
25 // where we display a white background if the login wallpaper takes a long time | 25 // where we display a white background if the login wallpaper takes a long time |
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 // Enables text filtering with the keyboard in Overview Mode. | |
33 const char kAshDisableTextFilteringInOverviewMode[] = | |
34 "ash-disable-text-filtering-in-overview-mode"; | |
35 | |
36 // Disables LockLayoutManager used for LockScreenContainer, return back to | 32 // Disables LockLayoutManager used for LockScreenContainer, return back to |
37 // WorkspaceLayoutManager. | 33 // WorkspaceLayoutManager. |
38 const char kAshDisableLockLayoutManager[] = "ash-disable-lock-layout-manager"; | 34 const char kAshDisableLockLayoutManager[] = "ash-disable-lock-layout-manager"; |
39 | 35 |
40 // Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be | 36 // Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be |
41 // turned on automatically when spoken feedback is enabled when this flag is | 37 // turned on automatically when spoken feedback is enabled when this flag is |
42 // set. | 38 // set. |
43 const char kAshDisableTouchExplorationMode[] = | 39 const char kAshDisableTouchExplorationMode[] = |
44 "ash-disable-touch-exploration-mode"; | 40 "ash-disable-touch-exploration-mode"; |
45 | 41 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 | 100 |
105 #if defined(OS_WIN) | 101 #if defined(OS_WIN) |
106 // Force Ash to open its root window on the desktop, even on Windows 8 where | 102 // Force Ash to open its root window on the desktop, even on Windows 8 where |
107 // it would normally end up in metro. | 103 // it would normally end up in metro. |
108 const char kForceAshToDesktop[] = "ash-force-desktop"; | 104 const char kForceAshToDesktop[] = "ash-force-desktop"; |
109 | 105 |
110 #endif | 106 #endif |
111 | 107 |
112 } // namespace switches | 108 } // namespace switches |
113 } // namespace ash | 109 } // namespace ash |
OLD | NEW |