| 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 // Enable the experiment to show all browser tabs in the browser menu of the | 77 // Enable the experiment to show all browser tabs in the browser menu of the |
| 72 // launcher. | 78 // launcher. |
| 73 const char kAshEnableFullBrowserListInLauncher[] = | 79 const char kAshEnableFullBrowserListInLauncher[] = |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 const char kAshTouchHud[] = "ash-touch-hud"; | 123 const char kAshTouchHud[] = "ash-touch-hud"; |
| 118 | 124 |
| 119 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 125 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
| 120 // Standard hardware reports releases immediately after presses. If set, we | 126 // Standard hardware reports releases immediately after presses. If set, we |
| 121 // lock the screen or shutdown the system immediately in response to a press | 127 // lock the screen or shutdown the system immediately in response to a press |
| 122 // instead of displaying an interactive animation. | 128 // instead of displaying an interactive animation. |
| 123 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 129 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 124 | 130 |
| 125 } // namespace switches | 131 } // namespace switches |
| 126 } // namespace ash | 132 } // namespace ash |
| OLD | NEW |