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