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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 116 |
117 // Don't create robot account on enrollment. Used when testing device | 117 // Don't create robot account on enrollment. Used when testing device |
118 // enrollment against YAPS or the Python test server. | 118 // enrollment against YAPS or the Python test server. |
119 const char kEnterpriseEnrollmentSkipRobotAuth[] = | 119 const char kEnterpriseEnrollmentSkipRobotAuth[] = |
120 "enterprise-enrollment-skip-robot-auth"; | 120 "enterprise-enrollment-skip-robot-auth"; |
121 | 121 |
122 // Enables the new audio player in the Files.app. | 122 // Enables the new audio player in the Files.app. |
123 const char kFileManagerEnableNewAudioPlayer[] = | 123 const char kFileManagerEnableNewAudioPlayer[] = |
124 "file-manager-enable-new-audio-player"; | 124 "file-manager-enable-new-audio-player"; |
125 | 125 |
126 // Enables the new gallery in the Files.app. | |
127 const char kFileManagerEnableNewGallery[] = | |
128 "file-manager-enable-new-gallery"; | |
129 | |
130 // Passed to Chrome the first time that it's run after the system boots. | 126 // Passed to Chrome the first time that it's run after the system boots. |
131 // Not passed on restart after sign out. | 127 // Not passed on restart after sign out. |
132 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; | 128 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; |
133 | 129 |
134 // Usually in browser tests the usual login manager bringup is skipped so that | 130 // Usually in browser tests the usual login manager bringup is skipped so that |
135 // tests can change how it's brought up. This flag disables that. | 131 // tests can change how it's brought up. This flag disables that. |
136 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; | 132 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; |
137 | 133 |
138 // Indicates that the browser is in "browse without sign-in" (Guest session) | 134 // Indicates that the browser is in "browse without sign-in" (Guest session) |
139 // mode. Should completely disable extensions, sync and bookmarks. | 135 // mode. Should completely disable extensions, sync and bookmarks. |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 214 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
219 | 215 |
220 // Forces first-run UI to be shown for every login. | 216 // Forces first-run UI to be shown for every login. |
221 const char kForceFirstRunUI[] = "force-first-run-ui"; | 217 const char kForceFirstRunUI[] = "force-first-run-ui"; |
222 | 218 |
223 // Enables testing for auto update UI. | 219 // Enables testing for auto update UI. |
224 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 220 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
225 | 221 |
226 } // namespace switches | 222 } // namespace switches |
227 } // namespace chromeos | 223 } // namespace chromeos |
OLD | NEW |