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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; | 69 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; |
70 | 70 |
71 // Enables consumer management, which allows user to enroll, remotely lock and | 71 // Enables consumer management, which allows user to enroll, remotely lock and |
72 // locate the device. | 72 // locate the device. |
73 const char kEnableConsumerManagement[] = "enable-consumer-management"; | 73 const char kEnableConsumerManagement[] = "enable-consumer-management"; |
74 | 74 |
75 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint | 75 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint |
76 // of GAIA. | 76 // of GAIA. |
77 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; | 77 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; |
78 | 78 |
| 79 // Enabled sharing assets for installed default apps. |
| 80 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; |
| 81 |
79 // Enables MTP support in Files.app. | 82 // Enables MTP support in Files.app. |
80 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 83 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
81 | 84 |
82 // Enable explicit HID detection on OOBE. | 85 // Enable explicit HID detection on OOBE. |
83 const char kEnableHIDDetectionOnOOBE[] = "enable-hid-detection-on-oobe"; | 86 const char kEnableHIDDetectionOnOOBE[] = "enable-hid-detection-on-oobe"; |
84 | 87 |
85 // Enables notifications about captive portals in session. | 88 // Enables notifications about captive portals in session. |
86 const char kEnableNetworkPortalNotification[] = | 89 const char kEnableNetworkPortalNotification[] = |
87 "enable-network-portal-notification"; | 90 "enable-network-portal-notification"; |
88 | 91 |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 217 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
215 | 218 |
216 // Forces first-run UI to be shown for every login. | 219 // Forces first-run UI to be shown for every login. |
217 const char kForceFirstRunUI[] = "force-first-run-ui"; | 220 const char kForceFirstRunUI[] = "force-first-run-ui"; |
218 | 221 |
219 // Enables testing for auto update UI. | 222 // Enables testing for auto update UI. |
220 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 223 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
221 | 224 |
222 } // namespace switches | 225 } // namespace switches |
223 } // namespace chromeos | 226 } // namespace chromeos |
OLD | NEW |