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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "ash-enable-power-button-quick-lock"; | 63 "ash-enable-power-button-quick-lock"; |
64 | 64 |
65 // Enables software based mirroring. | 65 // Enables software based mirroring. |
66 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 66 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
67 | 67 |
68 // Enables touch view testing. | 68 // Enables touch view testing. |
69 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this | 69 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this |
70 // flag is removed. | 70 // flag is removed. |
71 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; | 71 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; |
72 | 72 |
73 // Enables additional visual feedback to touch input. | |
74 const char kAshEnableTouchViewTouchFeedback[] = | |
75 "ash-enable-touch-view-touch-feedback"; | |
76 | |
77 // 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 |
78 // ChromeVox is enabled or not. | 74 // ChromeVox is enabled or not. |
79 const char kAshEnableSystemSounds[] = "ash-enable-system-sounds"; | 75 const char kAshEnableSystemSounds[] = "ash-enable-system-sounds"; |
80 | 76 |
81 // Enables showing the tray bubble by dragging on the shelf. | 77 // Enables showing the tray bubble by dragging on the shelf. |
82 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | 78 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; |
83 | 79 |
84 // 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 |
85 // files). | 81 // files). |
86 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... |
119 | 115 |
120 #if defined(OS_WIN) | 116 #if defined(OS_WIN) |
121 // 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 |
122 // it would normally end up in metro. | 118 // it would normally end up in metro. |
123 const char kForceAshToDesktop[] = "ash-force-desktop"; | 119 const char kForceAshToDesktop[] = "ash-force-desktop"; |
124 | 120 |
125 #endif | 121 #endif |
126 | 122 |
127 } // namespace switches | 123 } // namespace switches |
128 } // namespace ash | 124 } // namespace ash |
OLD | NEW |