| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // <F4> puts all other windows into non-immersive fullscreen. | 112 // <F4> puts all other windows into non-immersive fullscreen. |
| 113 const char kAshEnableImmersiveFullscreenForBrowserOnly[] = | 113 const char kAshEnableImmersiveFullscreenForBrowserOnly[] = |
| 114 "ash-enable-immersive-browser-only"; | 114 "ash-enable-immersive-browser-only"; |
| 115 | 115 |
| 116 #if defined(OS_LINUX) | 116 #if defined(OS_LINUX) |
| 117 // Enable memory monitoring. | 117 // Enable memory monitoring. |
| 118 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; | 118 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; |
| 119 #endif | 119 #endif |
| 120 | 120 |
| 121 #if defined(OS_CHROMEOS) | 121 #if defined(OS_CHROMEOS) |
| 122 // Enables accelerators to control magnified screen. |
| 123 const char kAshEnableMagnifierAccelerators[] = |
| 124 "ash-enable-magnifier-accelerators"; |
| 125 |
| 122 // Enables the multi user icons in the system tray. | 126 // Enables the multi user icons in the system tray. |
| 123 const char kAshEnableMultiUserTray[] = "ash-enable-multi-user-tray"; | 127 const char kAshEnableMultiUserTray[] = "ash-enable-multi-user-tray"; |
| 124 #endif | 128 #endif |
| 125 | 129 |
| 126 // Enables the Oak tree viewer. | 130 // Enables the Oak tree viewer. |
| 127 const char kAshEnableOak[] = "ash-enable-oak"; | 131 const char kAshEnableOak[] = "ash-enable-oak"; |
| 128 | 132 |
| 129 // Enables software based mirroring. | 133 // Enables software based mirroring. |
| 130 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 134 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
| 131 | 135 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 } | 263 } |
| 260 | 264 |
| 261 bool UseUsbChargerNotification() { | 265 bool UseUsbChargerNotification() { |
| 262 return !CommandLine::ForCurrentProcess()-> | 266 return !CommandLine::ForCurrentProcess()-> |
| 263 HasSwitch(kAshDisableUsbChargerNotification); | 267 HasSwitch(kAshDisableUsbChargerNotification); |
| 264 } | 268 } |
| 265 #endif | 269 #endif |
| 266 | 270 |
| 267 } // namespace switches | 271 } // namespace switches |
| 268 } // namespace ash | 272 } // namespace ash |
| OLD | NEW |