| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 // Indicates that the wallpaper images specified by | 32 // Indicates that the wallpaper images specified by |
| 33 // kAshDefaultWallpaper{Large,Small} are OEM-specific (i.e. they are not | 33 // kAshDefaultWallpaper{Large,Small} are OEM-specific (i.e. they are not |
| 34 // downloadable from Google). | 34 // downloadable from Google). |
| 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 |
| 42 // WorkspaceLayoutManager. |
| 43 const char kAshDisableLockLayoutManager[] = "ash-disable-lock-layout-manager"; |
| 44 |
| 41 // Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be | 45 // Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be |
| 42 // turned on automatically when spoken feedback is enabled when this flag is | 46 // turned on automatically when spoken feedback is enabled when this flag is |
| 43 // set. | 47 // set. |
| 44 const char kAshDisableTouchExplorationMode[] = | 48 const char kAshDisableTouchExplorationMode[] = |
| 45 "ash-disable-touch-exploration-mode"; | 49 "ash-disable-touch-exploration-mode"; |
| 46 | 50 |
| 47 #if defined(OS_CHROMEOS) | 51 #if defined(OS_CHROMEOS) |
| 48 // Enables key bindings to scroll magnified screen. | 52 // Enables key bindings to scroll magnified screen. |
| 49 const char kAshEnableMagnifierKeyScroller[] = | 53 const char kAshEnableMagnifierKeyScroller[] = |
| 50 "ash-enable-magnifier-key-scroller"; | 54 "ash-enable-magnifier-key-scroller"; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 107 |
| 104 #if defined(OS_WIN) | 108 #if defined(OS_WIN) |
| 105 // Force Ash to open its root window on the desktop, even on Windows 8 where | 109 // Force Ash to open its root window on the desktop, even on Windows 8 where |
| 106 // it would normally end up in metro. | 110 // it would normally end up in metro. |
| 107 const char kForceAshToDesktop[] = "ash-force-desktop"; | 111 const char kForceAshToDesktop[] = "ash-force-desktop"; |
| 108 | 112 |
| 109 #endif | 113 #endif |
| 110 | 114 |
| 111 } // namespace switches | 115 } // namespace switches |
| 112 } // namespace ash | 116 } // namespace ash |
| OLD | NEW |