| 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 | |
| 51 #if defined(OS_CHROMEOS) | 45 #if defined(OS_CHROMEOS) |
| 52 // Enables key bindings to scroll magnified screen. | 46 // Enables key bindings to scroll magnified screen. |
| 53 const char kAshEnableMagnifierKeyScroller[] = | 47 const char kAshEnableMagnifierKeyScroller[] = |
| 54 "ash-enable-magnifier-key-scroller"; | 48 "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"; |
| 55 #endif | 54 #endif |
| 56 | 55 |
| 57 // Enables text filtering with the keyboard in Overview Mode. | 56 // Enables text filtering with the keyboard in Overview Mode. |
| 58 const char kAshDisableTextFilteringInOverviewMode[] = | 57 const char kAshDisableTextFilteringInOverviewMode[] = |
| 59 "ash-disable-text-filtering-in-overview-mode"; | 58 "ash-disable-text-filtering-in-overview-mode"; |
| 60 | 59 |
| 61 // Enables software based mirroring. | 60 // Enables software based mirroring. |
| 62 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 61 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
| 63 | 62 |
| 64 // Enables touch view testing. | 63 // Enables touch view testing. |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 110 |
| 112 #if defined(OS_WIN) | 111 #if defined(OS_WIN) |
| 113 // Force Ash to open its root window on the desktop, even on Windows 8 where | 112 // Force Ash to open its root window on the desktop, even on Windows 8 where |
| 114 // it would normally end up in metro. | 113 // it would normally end up in metro. |
| 115 const char kForceAshToDesktop[] = "ash-force-desktop"; | 114 const char kForceAshToDesktop[] = "ash-force-desktop"; |
| 116 | 115 |
| 117 #endif | 116 #endif |
| 118 | 117 |
| 119 } // namespace switches | 118 } // namespace switches |
| 120 } // namespace ash | 119 } // namespace ash |
| OLD | NEW |