| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // Enables MTP support in Files.app. | 89 // Enables MTP support in Files.app. |
| 90 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 90 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
| 91 | 91 |
| 92 // Enables notifications about captive portals in session. | 92 // Enables notifications about captive portals in session. |
| 93 const char kEnableNetworkPortalNotification[] = | 93 const char kEnableNetworkPortalNotification[] = |
| 94 "enable-network-portal-notification"; | 94 "enable-network-portal-notification"; |
| 95 | 95 |
| 96 // Enables activation of voice search by saying 'Ok Google'. | 96 // Enables activation of voice search by saying 'Ok Google'. |
| 97 const char kEnableOkGoogleVoiceSearch[] = "enable-ok-google-voice-search"; | 97 const char kEnableOkGoogleVoiceSearch[] = "enable-ok-google-voice-search"; |
| 98 | 98 |
| 99 // Enables using screenshots in tests. |
| 100 const char kEnableScreenshotTesting[] = "enable-screenshot-testing"; |
| 101 |
| 99 // Enables touchpad three-finger-click as middle button. | 102 // Enables touchpad three-finger-click as middle button. |
| 100 const char kEnableTouchpadThreeFingerClick[] | 103 const char kEnableTouchpadThreeFingerClick[] |
| 101 = "enable-touchpad-three-finger-click"; | 104 = "enable-touchpad-three-finger-click"; |
| 102 | 105 |
| 103 // Enables using screenshots in tests and seets mode. | |
| 104 const char kEnableScreenshotTestingWithMode[] = | |
| 105 "enable-screenshot-testing-with-mode"; | |
| 106 | |
| 107 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather | 106 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
| 108 // than the kiosk app mode. | 107 // than the kiosk app mode. |
| 109 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 108 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
| 110 | 109 |
| 111 // Enables request of tablet site (via user agent override). | 110 // Enables request of tablet site (via user agent override). |
| 112 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | 111 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
| 113 | 112 |
| 114 // Whether to enable forced enterprise re-enrollment. | 113 // Whether to enable forced enterprise re-enrollment. |
| 115 const char kEnterpriseEnableForcedReEnrollment[] = | 114 const char kEnterpriseEnableForcedReEnrollment[] = |
| 116 "enterprise-enable-forced-re-enrollment"; | 115 "enterprise-enable-forced-re-enrollment"; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 // memory without signing should be used, treating current user as the owner. | 233 // memory without signing should be used, treating current user as the owner. |
| 235 // This option is for testing the chromeos build of chrome on the desktop only. | 234 // This option is for testing the chromeos build of chrome on the desktop only. |
| 236 const char kStubCrosSettings[] = "stub-cros-settings"; | 235 const char kStubCrosSettings[] = "stub-cros-settings"; |
| 237 | 236 |
| 238 // Enables animated transitions during first-run tutorial. | 237 // Enables animated transitions during first-run tutorial. |
| 239 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 238 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
| 240 | 239 |
| 241 // Forces first-run UI to be shown for every login. | 240 // Forces first-run UI to be shown for every login. |
| 242 const char kForceFirstRunUI[] = "force-first-run-ui"; | 241 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 243 | 242 |
| 243 // Turns on screenshot testing and specifies the directory where the |
| 244 // golden screenshots are stored. |
| 245 const char kScreenshotDestinationDir[] = "screenshot-destination-dir"; |
| 246 |
| 244 // Enables testing for auto update UI. | 247 // Enables testing for auto update UI. |
| 245 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 248 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 246 | 249 |
| 247 // Screenshot testing: specifies the directory where the golden screenshots are | |
| 248 // stored. | |
| 249 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | |
| 250 | |
| 251 // Screenshot testing: specifies the directoru where artifacts will be stored. | |
| 252 const char kArtifactsDir[] = "artifacts-dir"; | |
| 253 | |
| 254 } // namespace switches | 250 } // namespace switches |
| 255 } // namespace chromeos | 251 } // namespace chromeos |
| OLD | NEW |