| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 // Enables touch view testing. | 65 // Enables touch view testing. |
| 66 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this | 66 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this |
| 67 // flag is removed. | 67 // flag is removed. |
| 68 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; | 68 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; |
| 69 | 69 |
| 70 // When this flag is set, system sounds will be played whether the | 70 // When this flag is set, system sounds will be played whether the |
| 71 // ChromeVox is enabled or not. | 71 // ChromeVox is enabled or not. |
| 72 const char kAshEnableSystemSounds[] = "ash-enable-system-sounds"; | 72 const char kAshEnableSystemSounds[] = "ash-enable-system-sounds"; |
| 73 | 73 |
| 74 // Enables showing the tray bubble by dragging on the shelf. | |
| 75 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | |
| 76 | |
| 77 // Hides notifications that are irrelevant to Chrome OS device factory testing, | 74 // Hides notifications that are irrelevant to Chrome OS device factory testing, |
| 78 // such as battery level updates. | 75 // such as battery level updates. |
| 79 const char kAshHideNotificationsForFactory[] = | 76 const char kAshHideNotificationsForFactory[] = |
| 80 "ash-hide-notifications-for-factory"; | 77 "ash-hide-notifications-for-factory"; |
| 81 | 78 |
| 82 // Sets a window size, optional position, and optional scale factor. | 79 // Sets a window size, optional position, and optional scale factor. |
| 83 // "1024x768" creates a window of size 1024x768. | 80 // "1024x768" creates a window of size 1024x768. |
| 84 // "100+200-1024x768" positions the window at 100,200. | 81 // "100+200-1024x768" positions the window at 100,200. |
| 85 // "1024x768*2" sets the scale factor to 2 for a high DPI display. | 82 // "1024x768*2" sets the scale factor to 2 for a high DPI display. |
| 86 const char kAshHostWindowBounds[] = "ash-host-window-bounds"; | 83 const char kAshHostWindowBounds[] = "ash-host-window-bounds"; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 107 | 104 |
| 108 #if defined(OS_WIN) | 105 #if defined(OS_WIN) |
| 109 // Force Ash to open its root window on the desktop, even on Windows 8 where | 106 // Force Ash to open its root window on the desktop, even on Windows 8 where |
| 110 // it would normally end up in metro. | 107 // it would normally end up in metro. |
| 111 const char kForceAshToDesktop[] = "ash-force-desktop"; | 108 const char kForceAshToDesktop[] = "ash-force-desktop"; |
| 112 | 109 |
| 113 #endif | 110 #endif |
| 114 | 111 |
| 115 } // namespace switches | 112 } // namespace switches |
| 116 } // namespace ash | 113 } // namespace ash |
| OLD | NEW |