| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 // locate the device. | 80 // locate the device. |
| 81 const char kEnableConsumerManagement[] = "enable-consumer-management"; | 81 const char kEnableConsumerManagement[] = "enable-consumer-management"; |
| 82 | 82 |
| 83 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint | 83 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint |
| 84 // of GAIA. | 84 // of GAIA. |
| 85 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; | 85 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; |
| 86 | 86 |
| 87 // Enabled sharing assets for installed default apps. | 87 // Enabled sharing assets for installed default apps. |
| 88 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; | 88 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; |
| 89 | 89 |
| 90 // Enables MTP support in Files.app. | |
| 91 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | |
| 92 | |
| 93 // Enables notifications about captive portals in session. | 90 // Enables notifications about captive portals in session. |
| 94 const char kEnableNetworkPortalNotification[] = | 91 const char kEnableNetworkPortalNotification[] = |
| 95 "enable-network-portal-notification"; | 92 "enable-network-portal-notification"; |
| 96 | 93 |
| 97 // Enables rollback option on reset screen. | 94 // Enables rollback option on reset screen. |
| 98 const char kEnableRollbackOption[] = "enable-rollback-option"; | 95 const char kEnableRollbackOption[] = "enable-rollback-option"; |
| 99 | 96 |
| 100 // Enables touchpad three-finger-click as middle button. | 97 // Enables touchpad three-finger-click as middle button. |
| 101 const char kEnableTouchpadThreeFingerClick[] | 98 const char kEnableTouchpadThreeFingerClick[] |
| 102 = "enable-touchpad-three-finger-click"; | 99 = "enable-touchpad-three-finger-click"; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 236 |
| 240 // Screenshot testing: specifies the directory where the golden screenshots are | 237 // Screenshot testing: specifies the directory where the golden screenshots are |
| 241 // stored. | 238 // stored. |
| 242 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 239 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
| 243 | 240 |
| 244 // Screenshot testing: specifies the directoru where artifacts will be stored. | 241 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 245 const char kArtifactsDir[] = "artifacts-dir"; | 242 const char kArtifactsDir[] = "artifacts-dir"; |
| 246 | 243 |
| 247 } // namespace switches | 244 } // namespace switches |
| 248 } // namespace chromeos | 245 } // namespace chromeos |
| OLD | NEW |