Chromium Code Reviews| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 120 "enterprise-enrollment-modulus-limit"; | 120 "enterprise-enrollment-modulus-limit"; |
| 121 | 121 |
| 122 // Don't create robot account on enrollment. Used when testing device | 122 // Don't create robot account on enrollment. Used when testing device |
| 123 // enrollment against YAPS or the Python test server. | 123 // enrollment against YAPS or the Python test server. |
| 124 const char kEnterpriseEnrollmentSkipRobotAuth[] = | 124 const char kEnterpriseEnrollmentSkipRobotAuth[] = |
| 125 "enterprise-enrollment-skip-robot-auth"; | 125 "enterprise-enrollment-skip-robot-auth"; |
| 126 | 126 |
| 127 // Shows the selecting checkboxes in the Files.app. | 127 // Shows the selecting checkboxes in the Files.app. |
| 128 const char kFileManagerShowCheckboxes[] = "file-manager-show-checkboxes"; | 128 const char kFileManagerShowCheckboxes[] = "file-manager-show-checkboxes"; |
| 129 | 129 |
| 130 // Enables the new audio player in the Files.app. | |
| 131 const char kFileManagerEnableNewAudioPlayer[] = | |
| 132 "enable-new-audio-player"; | |
|
mtomasz
2014/01/27 01:09:24
All of the flags follow the pattern, that the cons
yoshiki
2014/01/27 07:12:08
Done.
| |
| 133 | |
| 130 // Enables the webstore integration feature in the Files.app. | 134 // Enables the webstore integration feature in the Files.app. |
| 131 const char kFileManagerEnableWebstoreIntegration[] = | 135 const char kFileManagerEnableWebstoreIntegration[] = |
| 132 "file-manager-enable-webstore-integration"; | 136 "file-manager-enable-webstore-integration"; |
| 133 | 137 |
| 134 // Enables the multi-profile support in the Files.app. | 138 // Enables the multi-profile support in the Files.app. |
| 135 const char kFileManagerEnableMultiProfile[] = | 139 const char kFileManagerEnableMultiProfile[] = |
| 136 "file-manager-enable-multi-profile"; | 140 "file-manager-enable-multi-profile"; |
| 137 | 141 |
| 138 // Passed to Chrome the first time that it's run after the system boots. | 142 // Passed to Chrome the first time that it's run after the system boots. |
| 139 // Not passed on restart after sign out. | 143 // Not passed on restart after sign out. |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 212 const char kForceFirstRunUI[] = "force-first-run-ui"; | 216 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 213 | 217 |
| 214 // Enables testing for auto update UI. | 218 // Enables testing for auto update UI. |
| 215 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 219 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 216 | 220 |
| 217 // Enables features required for supervised user sync, | 221 // Enables features required for supervised user sync, |
| 218 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 222 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 219 | 223 |
| 220 } // namespace switches | 224 } // namespace switches |
| 221 } // namespace chromeos | 225 } // namespace chromeos |
| OLD | NEW |