| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #if defined(OS_CHROMEOS) | 51 #if defined(OS_CHROMEOS) |
| 52 // Enables key bindings to scroll magnified screen. | 52 // Enables key bindings to scroll magnified screen. |
| 53 const char kAshEnableMagnifierKeyScroller[] = | 53 const char kAshEnableMagnifierKeyScroller[] = |
| 54 "ash-enable-magnifier-key-scroller"; | 54 "ash-enable-magnifier-key-scroller"; |
| 55 #endif | 55 #endif |
| 56 | 56 |
| 57 // Enables text filtering with the keyboard in Overview Mode. | 57 // Enables text filtering with the keyboard in Overview Mode. |
| 58 const char kAshDisableTextFilteringInOverviewMode[] = | 58 const char kAshDisableTextFilteringInOverviewMode[] = |
| 59 "ash-disable-text-filtering-in-overview-mode"; | 59 "ash-disable-text-filtering-in-overview-mode"; |
| 60 | 60 |
| 61 // Enables quick, non-cancellable locking of the screen when in maximize mode. |
| 62 const char kAshEnablePowerQuickLock[] = "ash-enable-power-quick-lock"; |
| 63 |
| 61 // Enables software based mirroring. | 64 // Enables software based mirroring. |
| 62 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 65 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
| 63 | 66 |
| 64 // Enables touch view testing. | 67 // Enables touch view testing. |
| 65 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this | 68 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this |
| 66 // flag is removed. | 69 // flag is removed. |
| 67 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; | 70 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; |
| 68 | 71 |
| 69 // When this flag is set, system sounds will be played whether the | 72 // When this flag is set, system sounds will be played whether the |
| 70 // ChromeVox is enabled or not. | 73 // ChromeVox is enabled or not. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 114 |
| 112 #if defined(OS_WIN) | 115 #if defined(OS_WIN) |
| 113 // Force Ash to open its root window on the desktop, even on Windows 8 where | 116 // Force Ash to open its root window on the desktop, even on Windows 8 where |
| 114 // it would normally end up in metro. | 117 // it would normally end up in metro. |
| 115 const char kForceAshToDesktop[] = "ash-force-desktop"; | 118 const char kForceAshToDesktop[] = "ash-force-desktop"; |
| 116 | 119 |
| 117 #endif | 120 #endif |
| 118 | 121 |
| 119 } // namespace switches | 122 } // namespace switches |
| 120 } // namespace ash | 123 } // namespace ash |
| OLD | NEW |