| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 // Useful for testing. | 70 // Useful for testing. |
| 71 const char kEchoExtensionPath[] = "echo-ext-path"; | 71 const char kEchoExtensionPath[] = "echo-ext-path"; |
| 72 | 72 |
| 73 // Enables component extension that initializes background pages of | 73 // Enables component extension that initializes background pages of |
| 74 // certain hosted applications. | 74 // certain hosted applications. |
| 75 const char kEnableBackgroundLoader[] = "enable-background-loader"; | 75 const char kEnableBackgroundLoader[] = "enable-background-loader"; |
| 76 | 76 |
| 77 // Enables switching between different cellular carriers from the UI. | 77 // Enables switching between different cellular carriers from the UI. |
| 78 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 78 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 79 | 79 |
| 80 // Enables automatically initializing Google Drive offline mode on first run. | |
| 81 const char kEnableDriveOfflineFirstRun[] = "enable-drive-offline-first-run"; | |
| 82 | |
| 83 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 80 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
| 84 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 81 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
| 85 | 82 |
| 86 // Enable stub portalled wifi network for testing. | 83 // Enable stub portalled wifi network for testing. |
| 87 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; | 84 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; |
| 88 | 85 |
| 89 // Enables touchpad three-finger-click as middle button. | 86 // Enables touchpad three-finger-click as middle button. |
| 90 const char kEnableTouchpadThreeFingerClick[] | 87 const char kEnableTouchpadThreeFingerClick[] |
| 91 = "enable-touchpad-three-finger-click"; | 88 = "enable-touchpad-three-finger-click"; |
| 92 | 89 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 const char kForceFirstRunUI[] = "force-first-run-ui"; | 214 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 218 | 215 |
| 219 // Enables testing for auto update UI. | 216 // Enables testing for auto update UI. |
| 220 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 217 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 221 | 218 |
| 222 // Enables features required for supervised user sync, | 219 // Enables features required for supervised user sync, |
| 223 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 220 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 224 | 221 |
| 225 } // namespace switches | 222 } // namespace switches |
| 226 } // namespace chromeos | 223 } // namespace chromeos |
| OLD | NEW |