| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 188 |
| 189 // Disables new first-run overlay UI. | 189 // Disables new first-run overlay UI. |
| 190 const char kDisableFirstRunUI[] = "disable-first-run-ui"; | 190 const char kDisableFirstRunUI[] = "disable-first-run-ui"; |
| 191 | 191 |
| 192 // Forces first-run UI to be shown for every login. | 192 // Forces first-run UI to be shown for every login. |
| 193 const char kForceFirstRunUI[] = "force-first-run-ui"; | 193 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 194 | 194 |
| 195 // Enables testing for auto update UI. | 195 // Enables testing for auto update UI. |
| 196 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 196 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 197 | 197 |
| 198 // Enables features required for supervised user sync, |
| 199 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 200 |
| 198 } // namespace switches | 201 } // namespace switches |
| 199 } // namespace chromeos | 202 } // namespace chromeos |
| OLD | NEW |