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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 const char kEnterpriseEnrollmentSkipRobotAuth[] = | 121 const char kEnterpriseEnrollmentSkipRobotAuth[] = |
122 "enterprise-enrollment-skip-robot-auth"; | 122 "enterprise-enrollment-skip-robot-auth"; |
123 | 123 |
124 // Shows the selecting checkboxes in the Files.app. | 124 // Shows the selecting checkboxes in the Files.app. |
125 const char kFileManagerShowCheckboxes[] = "file-manager-show-checkboxes"; | 125 const char kFileManagerShowCheckboxes[] = "file-manager-show-checkboxes"; |
126 | 126 |
127 // Enables the webstore integration feature in the Files.app. | 127 // Enables the webstore integration feature in the Files.app. |
128 const char kFileManagerEnableWebstoreIntegration[] = | 128 const char kFileManagerEnableWebstoreIntegration[] = |
129 "file-manager-enable-webstore-integration"; | 129 "file-manager-enable-webstore-integration"; |
130 | 130 |
| 131 // Enables the multi-profile support in the Files.app. |
| 132 const char kFileManagerEnableMultiProfile[] = |
| 133 "file-manager-enable-multi-profile"; |
| 134 |
131 // Passed to Chrome the first time that it's run after the system boots. | 135 // Passed to Chrome the first time that it's run after the system boots. |
132 // Not passed on restart after sign out. | 136 // Not passed on restart after sign out. |
133 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; | 137 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; |
134 | 138 |
135 // Usually in browser tests the usual login manager bringup is skipped so that | 139 // Usually in browser tests the usual login manager bringup is skipped so that |
136 // tests can change how it's brought up. This flag disables that. | 140 // tests can change how it's brought up. This flag disables that. |
137 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; | 141 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; |
138 | 142 |
139 // Makes GPU sandbox failures nonfatal. | 143 // Makes GPU sandbox failures nonfatal. |
140 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal"; | 144 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal"; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 const char kForceFirstRunUI[] = "force-first-run-ui"; | 209 const char kForceFirstRunUI[] = "force-first-run-ui"; |
206 | 210 |
207 // Enables testing for auto update UI. | 211 // Enables testing for auto update UI. |
208 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 212 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
209 | 213 |
210 // Enables features required for supervised user sync, | 214 // Enables features required for supervised user sync, |
211 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 215 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
212 | 216 |
213 } // namespace switches | 217 } // namespace switches |
214 } // namespace chromeos | 218 } // namespace chromeos |
OLD | NEW |