| 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 namespace ash { | 7 namespace ash { |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Enables an animated transition from the boot splash screen (Chrome logo on a | 10 // Enables an animated transition from the boot splash screen (Chrome logo on a |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 // Disable new network handlers in the status area. | 54 // Disable new network handlers in the status area. |
| 55 const char kAshDisableNewNetworkStatusArea[] = | 55 const char kAshDisableNewNetworkStatusArea[] = |
| 56 "ash-disable-new-network-status-area"; | 56 "ash-disable-new-network-status-area"; |
| 57 | 57 |
| 58 // Disable the per application grouping version of the launcher. | 58 // Disable the per application grouping version of the launcher. |
| 59 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher"; | 59 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher"; |
| 60 | 60 |
| 61 // Disables immersive fullscreen mode. | 61 // Disables immersive fullscreen mode. |
| 62 const char kAshDisableImmersiveMode[] = "ash-disable-immersive-mode"; | 62 const char kAshDisableImmersiveMode[] = "ash-disable-immersive-mode"; |
| 63 | 63 |
| 64 // Disables display rotation. |
| 65 const char kAshDisableDisplayRotation[] = "ash-disable-display-rotation"; |
| 66 |
| 67 // Disables ui scaling. |
| 68 const char kAshDisableUIScaling[] = "ash-disable-ui-scaling"; |
| 69 |
| 64 // Enable advanced gestures (e.g. for window management). | 70 // Enable advanced gestures (e.g. for window management). |
| 65 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; | 71 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; |
| 66 | 72 |
| 67 // Always enable brightness control. Used by machines that don't report their | 73 // Always enable brightness control. Used by machines that don't report their |
| 68 // main monitor as internal. | 74 // main monitor as internal. |
| 69 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control"; | 75 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control"; |
| 70 | 76 |
| 71 #if defined(OS_LINUX) | 77 #if defined(OS_LINUX) |
| 72 // Enable memory monitoring. | 78 // Enable memory monitoring. |
| 73 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; | 79 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 const char kAshTouchHud[] = "ash-touch-hud"; | 118 const char kAshTouchHud[] = "ash-touch-hud"; |
| 113 | 119 |
| 114 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 120 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
| 115 // Standard hardware reports releases immediately after presses. If set, we | 121 // Standard hardware reports releases immediately after presses. If set, we |
| 116 // lock the screen or shutdown the system immediately in response to a press | 122 // lock the screen or shutdown the system immediately in response to a press |
| 117 // instead of displaying an interactive animation. | 123 // instead of displaying an interactive animation. |
| 118 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 124 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 119 | 125 |
| 120 } // namespace switches | 126 } // namespace switches |
| 121 } // namespace ash | 127 } // namespace ash |
| OLD | NEW |