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 // Enables reporting recently logged in users for enterprise-managed devices. | 88 // Enables reporting recently logged in users for enterprise-managed devices. |
86 const char kEnableEnterpriseUserReporting[] = | 89 const char kEnableEnterpriseUserReporting[] = |
87 "enable-enterprise-user-reporting"; | 90 "enable-enterprise-user-reporting"; |
88 | 91 |
89 // Enable to show the indicator about the IME (input method editor) mode | 92 // Enable to show the indicator about the IME (input method editor) mode |
90 // on Chrome OS. | 93 // on Chrome OS. |
91 const char kEnableIMEModeIndicator[] = "enable-ime-mode-indicator"; | 94 const char kEnableIMEModeIndicator[] = "enable-ime-mode-indicator"; |
92 | 95 |
93 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) | 96 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler) |
94 const char kEnableStubInteractive[] = "enable-stub-interactive"; | 97 const char kEnableStubInteractive[] = "enable-stub-interactive"; |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 const char kEnableSamlSignin[] = "enable-saml-signin"; | 192 const char kEnableSamlSignin[] = "enable-saml-signin"; |
190 | 193 |
191 // Enables new first-run overlay UI. | 194 // Enables new first-run overlay UI. |
192 const char kEnableFirstRunUI[] = "enable-first-run-ui"; | 195 const char kEnableFirstRunUI[] = "enable-first-run-ui"; |
193 | 196 |
194 // Enables testing for auto update UI. | 197 // Enables testing for auto update UI. |
195 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 198 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
196 | 199 |
197 } // namespace switches | 200 } // namespace switches |
198 } // namespace chromeos | 201 } // namespace chromeos |
OLD | NEW |