| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 // Don't create robot account on enrollment. Used when testing device | 97 // Don't create robot account on enrollment. Used when testing device |
| 98 // enrollment against YAPS or the Python test server. | 98 // enrollment against YAPS or the Python test server. |
| 99 const char kEnterpriseEnrollmentSkipRobotAuth[] = | 99 const char kEnterpriseEnrollmentSkipRobotAuth[] = |
| 100 "enterprise-enrollment-skip-robot-auth"; | 100 "enterprise-enrollment-skip-robot-auth"; |
| 101 | 101 |
| 102 // Enables the new audio player in the Files.app. | 102 // Enables the new audio player in the Files.app. |
| 103 const char kFileManagerEnableNewAudioPlayer[] = | 103 const char kFileManagerEnableNewAudioPlayer[] = |
| 104 "file-manager-enable-new-audio-player"; | 104 "file-manager-enable-new-audio-player"; |
| 105 | 105 |
| 106 // Enables the new gallery in the Files.app. |
| 107 const char kFileManagerEnableNewGallery[] = |
| 108 "file-manager-enable-new-gallery"; |
| 109 |
| 106 // Passed to Chrome the first time that it's run after the system boots. | 110 // Passed to Chrome the first time that it's run after the system boots. |
| 107 // Not passed on restart after sign out. | 111 // Not passed on restart after sign out. |
| 108 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; | 112 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; |
| 109 | 113 |
| 110 // Usually in browser tests the usual login manager bringup is skipped so that | 114 // Usually in browser tests the usual login manager bringup is skipped so that |
| 111 // tests can change how it's brought up. This flag disables that. | 115 // tests can change how it's brought up. This flag disables that. |
| 112 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; | 116 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; |
| 113 | 117 |
| 114 // Indicates that the browser is in "browse without sign-in" (Guest session) | 118 // Indicates that the browser is in "browse without sign-in" (Guest session) |
| 115 // mode. Should completely disable extensions, sync and bookmarks. | 119 // mode. Should completely disable extensions, sync and bookmarks. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 193 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
| 190 | 194 |
| 191 // Forces first-run UI to be shown for every login. | 195 // Forces first-run UI to be shown for every login. |
| 192 const char kForceFirstRunUI[] = "force-first-run-ui"; | 196 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 193 | 197 |
| 194 // Enables testing for auto update UI. | 198 // Enables testing for auto update UI. |
| 195 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 199 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 196 | 200 |
| 197 } // namespace switches | 201 } // namespace switches |
| 198 } // namespace chromeos | 202 } // namespace chromeos |
| OLD | NEW |