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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 // Useful for testing. | 65 // Useful for testing. |
66 const char kEchoExtensionPath[] = "echo-ext-path"; | 66 const char kEchoExtensionPath[] = "echo-ext-path"; |
67 | 67 |
68 // Enables switching between different cellular carriers from the UI. | 68 // Enables switching between different cellular carriers from the UI. |
69 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 69 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
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 // Enabled sharing assets for installed default apps. |
| 76 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; |
| 77 |
75 // Enables MTP support in Files.app. | 78 // Enables MTP support in Files.app. |
76 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 79 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
77 | 80 |
78 // Enable explicit HID detection on OOBE. | 81 // Enable explicit HID detection on OOBE. |
79 const char kEnableHIDDetectionOnOOBE[] = "enable-hid-detection-on-oobe"; | 82 const char kEnableHIDDetectionOnOOBE[] = "enable-hid-detection-on-oobe"; |
80 | 83 |
81 // Enables notifications about captive portals in session. | 84 // Enables notifications about captive portals in session. |
82 const char kEnableNetworkPortalNotification[] = | 85 const char kEnableNetworkPortalNotification[] = |
83 "enable-network-portal-notification"; | 86 "enable-network-portal-notification"; |
84 | 87 |
(...skipping 129 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 |