| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 // Power of the power-of-2 maximum modulus that will be used by the | 124 // Power of the power-of-2 maximum modulus that will be used by the |
| 125 // auto-enrollment client. | 125 // auto-enrollment client. |
| 126 const char kEnterpriseEnrollmentModulusLimit[] = | 126 const char kEnterpriseEnrollmentModulusLimit[] = |
| 127 "enterprise-enrollment-modulus-limit"; | 127 "enterprise-enrollment-modulus-limit"; |
| 128 | 128 |
| 129 // Don't create robot account on enrollment. Used when testing device | 129 // Don't create robot account on enrollment. Used when testing device |
| 130 // enrollment against YAPS or the Python test server. | 130 // enrollment against YAPS or the Python test server. |
| 131 const char kEnterpriseEnrollmentSkipRobotAuth[] = | 131 const char kEnterpriseEnrollmentSkipRobotAuth[] = |
| 132 "enterprise-enrollment-skip-robot-auth"; | 132 "enterprise-enrollment-skip-robot-auth"; |
| 133 | 133 |
| 134 // Enables the new gallery in the Files.app. | |
| 135 const char kFileManagerEnableNewGallery[] = | |
| 136 "file-manager-enable-new-gallery"; | |
| 137 | |
| 138 // Enables the chromecast support for video player app. | 134 // Enables the chromecast support for video player app. |
| 139 const char kEnableVideoPlayerChromecastSupport[] = | 135 const char kEnableVideoPlayerChromecastSupport[] = |
| 140 "enable-video-player-chromecast-support"; | 136 "enable-video-player-chromecast-support"; |
| 141 | 137 |
| 142 // Passed to Chrome the first time that it's run after the system boots. | 138 // Passed to Chrome the first time that it's run after the system boots. |
| 143 // Not passed on restart after sign out. | 139 // Not passed on restart after sign out. |
| 144 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; | 140 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; |
| 145 | 141 |
| 146 // Usually in browser tests the usual login manager bringup is skipped so that | 142 // Usually in browser tests the usual login manager bringup is skipped so that |
| 147 // tests can change how it's brought up. This flag disables that. | 143 // tests can change how it's brought up. This flag disables that. |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 243 |
| 248 // Screenshot testing: specifies the directory where the golden screenshots are | 244 // Screenshot testing: specifies the directory where the golden screenshots are |
| 249 // stored. | 245 // stored. |
| 250 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 246 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
| 251 | 247 |
| 252 // Screenshot testing: specifies the directoru where artifacts will be stored. | 248 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 253 const char kArtifactsDir[] = "artifacts-dir"; | 249 const char kArtifactsDir[] = "artifacts-dir"; |
| 254 | 250 |
| 255 } // namespace switches | 251 } // namespace switches |
| 256 } // namespace chromeos | 252 } // namespace chromeos |
| OLD | NEW |