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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Chrome Captive Portal detector, which initiates Captive | 80 // Enables Chrome Captive Portal detector, which initiates Captive |
81 // Portal detection for new active networks. | 81 // Portal detection for new active networks. |
82 const char kEnableChromeCaptivePortalDetector[] = | 82 const char kEnableChromeCaptivePortalDetector[] = |
83 "enable-chrome-captive-portal-detector"; | 83 "enable-chrome-captive-portal-detector"; |
84 | 84 |
| 85 // Enables automatically initializing Google Drive offline mode on first run. |
| 86 const char kEnableDriveOfflineFirstRun[] = "enable-drive-offline-first-run"; |
| 87 |
85 // Enable to show the indicator about the IME (input method editor) mode | 88 // Enable to show the indicator about the IME (input method editor) mode |
86 // on Chrome OS. | 89 // on Chrome OS. |
87 const char kEnableIMEModeIndicator[] = "enable-ime-mode-indicator"; | 90 const char kEnableIMEModeIndicator[] = "enable-ime-mode-indicator"; |
88 | 91 |
89 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 92 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
90 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 93 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
91 | 94 |
92 // Enable stub portalled wifi network for testing. | 95 // Enable stub portalled wifi network for testing. |
93 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; | 96 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi"; |
94 | 97 |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 const char kEnableSamlSignin[] = "enable-saml-signin"; | 188 const char kEnableSamlSignin[] = "enable-saml-signin"; |
186 | 189 |
187 // Enables new first-run overlay UI. | 190 // Enables new first-run overlay UI. |
188 const char kEnableFirstRunUI[] = "enable-first-run-ui"; | 191 const char kEnableFirstRunUI[] = "enable-first-run-ui"; |
189 | 192 |
190 // Enables testing for auto update UI. | 193 // Enables testing for auto update UI. |
191 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 194 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
192 | 195 |
193 } // namespace switches | 196 } // namespace switches |
194 } // namespace chromeos | 197 } // namespace chromeos |
OLD | NEW |