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 24 matching lines...) Expand all Loading... |
35 const char kAshDefaultWallpaperIsOem[] = "ash-default-wallpaper-is-oem"; | 35 const char kAshDefaultWallpaperIsOem[] = "ash-default-wallpaper-is-oem"; |
36 | 36 |
37 // Default wallpaper to use (as paths to trusted, non-user-writable JPEG files). | 37 // Default wallpaper to use (as paths to trusted, non-user-writable JPEG files). |
38 const char kAshDefaultWallpaperLarge[] = "ash-default-wallpaper-large"; | 38 const char kAshDefaultWallpaperLarge[] = "ash-default-wallpaper-large"; |
39 const char kAshDefaultWallpaperSmall[] = "ash-default-wallpaper-small"; | 39 const char kAshDefaultWallpaperSmall[] = "ash-default-wallpaper-small"; |
40 | 40 |
41 // Disables LockLayoutManager used for LockScreenContainer, return back to | 41 // Disables LockLayoutManager used for LockScreenContainer, return back to |
42 // WorkspaceLayoutManager. | 42 // WorkspaceLayoutManager. |
43 const char kAshDisableLockLayoutManager[] = "ash-disable-lock-layout-manager"; | 43 const char kAshDisableLockLayoutManager[] = "ash-disable-lock-layout-manager"; |
44 | 44 |
| 45 // Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be |
| 46 // turned on automatically when spoken feedback is enabled when this flag is |
| 47 // set. |
| 48 const char kAshDisableTouchExplorationMode[] = |
| 49 "ash-disable-touch-exploration-mode"; |
| 50 |
45 #if defined(OS_CHROMEOS) | 51 #if defined(OS_CHROMEOS) |
46 // Enables key bindings to scroll magnified screen. | 52 // Enables key bindings to scroll magnified screen. |
47 const char kAshEnableMagnifierKeyScroller[] = | 53 const char kAshEnableMagnifierKeyScroller[] = |
48 "ash-enable-magnifier-key-scroller"; | 54 "ash-enable-magnifier-key-scroller"; |
49 | |
50 // Enable the Touch Exploration Mode, which will be turned on automatically | |
51 // when spoken feedback is enabled. | |
52 const char kAshEnableTouchExplorationMode[] = | |
53 "ash-enable-touch-exploration-mode"; | |
54 #endif | 55 #endif |
55 | 56 |
56 // Enables text filtering with the keyboard in Overview Mode. | 57 // Enables text filtering with the keyboard in Overview Mode. |
57 const char kAshDisableTextFilteringInOverviewMode[] = | 58 const char kAshDisableTextFilteringInOverviewMode[] = |
58 "ash-disable-text-filtering-in-overview-mode"; | 59 "ash-disable-text-filtering-in-overview-mode"; |
59 | 60 |
60 // Enables software based mirroring. | 61 // Enables software based mirroring. |
61 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 62 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
62 | 63 |
63 // Enables touch view testing. | 64 // Enables touch view testing. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 111 |
111 #if defined(OS_WIN) | 112 #if defined(OS_WIN) |
112 // Force Ash to open its root window on the desktop, even on Windows 8 where | 113 // Force Ash to open its root window on the desktop, even on Windows 8 where |
113 // it would normally end up in metro. | 114 // it would normally end up in metro. |
114 const char kForceAshToDesktop[] = "ash-force-desktop"; | 115 const char kForceAshToDesktop[] = "ash-force-desktop"; |
115 | 116 |
116 #endif | 117 #endif |
117 | 118 |
118 } // namespace switches | 119 } // namespace switches |
119 } // namespace ash | 120 } // namespace ash |
OLD | NEW |