| 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 "chromeos/chromeos_switches.h" | 5 #include "chromeos/chromeos_switches.h" |
| 6 | 6 |
| 7 namespace chromeos { | 7 namespace chromeos { |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Path for app's OEM manifest file. | 10 // Path for app's OEM manifest file. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 const char kDisableOOBEBlockingUpdate[] = | 66 const char kDisableOOBEBlockingUpdate[] = |
| 67 "disable-oobe-blocking-update"; | 67 "disable-oobe-blocking-update"; |
| 68 | 68 |
| 69 // Disables fake ethernet network in the stub implementations. | 69 // Disables fake ethernet network in the stub implementations. |
| 70 const char kDisableStubEthernet[] = "disable-stub-ethernet"; | 70 const char kDisableStubEthernet[] = "disable-stub-ethernet"; |
| 71 | 71 |
| 72 // Enables overriding the path for the default echo component extension. | 72 // Enables overriding the path for the default echo component extension. |
| 73 // Useful for testing. | 73 // Useful for testing. |
| 74 const char kEchoExtensionPath[] = "echo-ext-path"; | 74 const char kEchoExtensionPath[] = "echo-ext-path"; |
| 75 | 75 |
| 76 // Enables settings ui to control the autoclick accessibility feature. |
| 77 const char kEnableAutoclick[] = "enable-autoclick"; |
| 78 |
| 76 // Enables component extension that initializes background pages of | 79 // Enables component extension that initializes background pages of |
| 77 // certain hosted applications. | 80 // certain hosted applications. |
| 78 const char kEnableBackgroundLoader[] = "enable-background-loader"; | 81 const char kEnableBackgroundLoader[] = "enable-background-loader"; |
| 79 | 82 |
| 80 // Enables switching between different cellular carriers from the UI. | 83 // Enables switching between different cellular carriers from the UI. |
| 81 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 84 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 82 | 85 |
| 83 // Enable switching between audio devices in Chrome instead of cras. | 86 // Enable switching between audio devices in Chrome instead of cras. |
| 84 const char kEnableChromeAudioSwitching[] = "enable-chrome-audio-switching"; | 87 const char kEnableChromeAudioSwitching[] = "enable-chrome-audio-switching"; |
| 85 | 88 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 const char kDisableUserImageSync[] = "disable-user-image-sync"; | 196 const char kDisableUserImageSync[] = "disable-user-image-sync"; |
| 194 | 197 |
| 195 // Enables SAML sigin support. | 198 // Enables SAML sigin support. |
| 196 const char kEnableSamlSignin[] = "enable-saml-signin"; | 199 const char kEnableSamlSignin[] = "enable-saml-signin"; |
| 197 | 200 |
| 198 // Enables new first-run overlay UI. | 201 // Enables new first-run overlay UI. |
| 199 const char kEnableFirstRunUI[] = "enable-first-run-ui"; | 202 const char kEnableFirstRunUI[] = "enable-first-run-ui"; |
| 200 | 203 |
| 201 } // namespace switches | 204 } // namespace switches |
| 202 } // namespace chromeos | 205 } // namespace chromeos |
| OLD | NEW |