| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "ash-disable-text-filtering-in-overview-mode"; | 59 "ash-disable-text-filtering-in-overview-mode"; |
| 60 | 60 |
| 61 // Enables software based mirroring. | 61 // Enables software based mirroring. |
| 62 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 62 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
| 63 | 63 |
| 64 // Enables touch view testing. | 64 // Enables touch view testing. |
| 65 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this | 65 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this |
| 66 // flag is removed. | 66 // flag is removed. |
| 67 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; | 67 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; |
| 68 | 68 |
| 69 // Enables additional visual feedback to touch input while the device is in |
| 70 // touch view mode. |
| 71 const char kAshEnableTouchViewTouchFeedback[] = |
| 72 "ash-enable-touch-view-touch-feedback"; |
| 73 |
| 69 // When this flag is set, system sounds will be played whether the | 74 // When this flag is set, system sounds will be played whether the |
| 70 // ChromeVox is enabled or not. | 75 // ChromeVox is enabled or not. |
| 71 const char kAshEnableSystemSounds[] = "ash-enable-system-sounds"; | 76 const char kAshEnableSystemSounds[] = "ash-enable-system-sounds"; |
| 72 | 77 |
| 73 // Enables showing the tray bubble by dragging on the shelf. | 78 // Enables showing the tray bubble by dragging on the shelf. |
| 74 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | 79 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; |
| 75 | 80 |
| 76 // Wallpaper to use in guest mode (as paths to trusted, non-user-writable JPEG | 81 // Wallpaper to use in guest mode (as paths to trusted, non-user-writable JPEG |
| 77 // files). | 82 // files). |
| 78 const char kAshGuestWallpaperLarge[] = "ash-guest-wallpaper-large"; | 83 const char kAshGuestWallpaperLarge[] = "ash-guest-wallpaper-large"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 116 |
| 112 #if defined(OS_WIN) | 117 #if defined(OS_WIN) |
| 113 // Force Ash to open its root window on the desktop, even on Windows 8 where | 118 // Force Ash to open its root window on the desktop, even on Windows 8 where |
| 114 // it would normally end up in metro. | 119 // it would normally end up in metro. |
| 115 const char kForceAshToDesktop[] = "ash-force-desktop"; | 120 const char kForceAshToDesktop[] = "ash-force-desktop"; |
| 116 | 121 |
| 117 #endif | 122 #endif |
| 118 | 123 |
| 119 } // namespace switches | 124 } // namespace switches |
| 120 } // namespace ash | 125 } // namespace ash |
| OLD | NEW |