| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 // Disables new Kiosk UI when kiosk apps are represented as user pods. | 52 // Disables new Kiosk UI when kiosk apps are represented as user pods. |
| 53 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; | 53 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; |
| 54 | 54 |
| 55 // Disable Office Editing for Docs, Sheets & Slides component app so handlers | 55 // Disable Office Editing for Docs, Sheets & Slides component app so handlers |
| 56 // won't be registered, making it possible to install another version for | 56 // won't be registered, making it possible to install another version for |
| 57 // testing. | 57 // testing. |
| 58 const char kDisableOfficeEditingComponentApp[] = | 58 const char kDisableOfficeEditingComponentApp[] = |
| 59 "disable-office-editing-component-extension"; | 59 "disable-office-editing-component-extension"; |
| 60 | 60 |
| 61 // Disables rollback option on reset screen. | |
| 62 const char kDisableRollbackOption[] = "disable-rollback-option"; | |
| 63 | |
| 64 // Disables volume adjust sound. | 61 // Disables volume adjust sound. |
| 65 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 62 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
| 66 | 63 |
| 67 // Disables notifications about captive portals in session. | 64 // Disables notifications about captive portals in session. |
| 68 const char kDisableNetworkPortalNotification[] = | 65 const char kDisableNetworkPortalNotification[] = |
| 69 "disable-network-portal-notification"; | 66 "disable-network-portal-notification"; |
| 70 | 67 |
| 71 // Enables switching between different cellular carriers from the UI. | 68 // Enables switching between different cellular carriers from the UI. |
| 72 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 69 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 73 | 70 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 86 // Enabled sharing assets for installed default apps. | 83 // Enabled sharing assets for installed default apps. |
| 87 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; | 84 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; |
| 88 | 85 |
| 89 // Enables MTP support in Files.app. | 86 // Enables MTP support in Files.app. |
| 90 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; | 87 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp"; |
| 91 | 88 |
| 92 // Enables notifications about captive portals in session. | 89 // Enables notifications about captive portals in session. |
| 93 const char kEnableNetworkPortalNotification[] = | 90 const char kEnableNetworkPortalNotification[] = |
| 94 "enable-network-portal-notification"; | 91 "enable-network-portal-notification"; |
| 95 | 92 |
| 93 // Enables rollback option on reset screen. |
| 94 const char kEnableRollbackOption[] = "enable-rollback-option"; |
| 95 |
| 96 // Enables touchpad three-finger-click as middle button. | 96 // Enables touchpad three-finger-click as middle button. |
| 97 const char kEnableTouchpadThreeFingerClick[] | 97 const char kEnableTouchpadThreeFingerClick[] |
| 98 = "enable-touchpad-three-finger-click"; | 98 = "enable-touchpad-three-finger-click"; |
| 99 | 99 |
| 100 // Enables using screenshots in tests and seets mode. | 100 // Enables using screenshots in tests and seets mode. |
| 101 const char kEnableScreenshotTestingWithMode[] = | 101 const char kEnableScreenshotTestingWithMode[] = |
| 102 "enable-screenshot-testing-with-mode"; | 102 "enable-screenshot-testing-with-mode"; |
| 103 | 103 |
| 104 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather | 104 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather |
| 105 // than the kiosk app mode. | 105 // than the kiosk app mode. |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 243 |
| 244 // Screenshot testing: specifies the directory where the golden screenshots are | 244 // Screenshot testing: specifies the directory where the golden screenshots are |
| 245 // stored. | 245 // stored. |
| 246 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 246 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
| 247 | 247 |
| 248 // Screenshot testing: specifies the directoru where artifacts will be stored. | 248 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 249 const char kArtifactsDir[] = "artifacts-dir"; | 249 const char kArtifactsDir[] = "artifacts-dir"; |
| 250 | 250 |
| 251 } // namespace switches | 251 } // namespace switches |
| 252 } // namespace chromeos | 252 } // namespace chromeos |
| OLD | NEW |