| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual | 45 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual |
| 46 // keyboard is shown. | 46 // keyboard is shown. |
| 47 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; | 47 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; |
| 48 | 48 |
| 49 // Disable new channel switcher UI. | 49 // Disable new channel switcher UI. |
| 50 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 50 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
| 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 Quickoffice component app thus handlers won't be registered so | 55 // Disable Office Editing for Docs, Sheets & Slides component app so handlers |
| 56 // it will be possible to install another version as normal app for testing. | 56 // won't be registered, making it possible to install another version for |
| 57 const char kDisableQuickofficeComponentApp[] = | 57 // testing. |
| 58 "disable-quickoffice-component-app"; | 58 const char kDisableOfficeEditingComponentApp[] = |
| 59 "disable-office-editing-component-extension"; |
| 59 | 60 |
| 60 // Disables rollback option on reset screen. | 61 // Disables rollback option on reset screen. |
| 61 const char kDisableRollbackOption[] = "disable-rollback-option"; | 62 const char kDisableRollbackOption[] = "disable-rollback-option"; |
| 62 | 63 |
| 63 // Disables volume adjust sound. | 64 // Disables volume adjust sound. |
| 64 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 65 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
| 65 | 66 |
| 66 // Disables notifications about captive portals in session. | 67 // Disables notifications about captive portals in session. |
| 67 const char kDisableNetworkPortalNotification[] = | 68 const char kDisableNetworkPortalNotification[] = |
| 68 "disable-network-portal-notification"; | 69 "disable-network-portal-notification"; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 233 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
| 233 | 234 |
| 234 // Forces first-run UI to be shown for every login. | 235 // Forces first-run UI to be shown for every login. |
| 235 const char kForceFirstRunUI[] = "force-first-run-ui"; | 236 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 236 | 237 |
| 237 // Enables testing for auto update UI. | 238 // Enables testing for auto update UI. |
| 238 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 239 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 239 | 240 |
| 240 } // namespace switches | 241 } // namespace switches |
| 241 } // namespace chromeos | 242 } // namespace chromeos |
| OLD | NEW |