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