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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual | 49 // Disable login/lock UI (user pods) scrolling into view on JS side when virtual |
50 // keyboard is shown. | 50 // keyboard is shown. |
51 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; | 51 const char kDisableLoginScrollIntoView[] = "disable-login-scroll-into-view"; |
52 | 52 |
53 // Disable new channel switcher UI. | 53 // Disable new channel switcher UI. |
54 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 54 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
55 | 55 |
56 // Disables new Kiosk UI when kiosk apps are represented as user pods. | 56 // Disables new Kiosk UI when kiosk apps are represented as user pods. |
57 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; | 57 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; |
58 | 58 |
| 59 // Disables the new File System Provider API based ZIP unpacker. |
| 60 const char kDisableNewZIPUnpacker[] = "disable-new-zip-unpacker"; |
| 61 |
59 // Disable Office Editing for Docs, Sheets & Slides component app so handlers | 62 // Disable Office Editing for Docs, Sheets & Slides component app so handlers |
60 // won't be registered, making it possible to install another version for | 63 // won't be registered, making it possible to install another version for |
61 // testing. | 64 // testing. |
62 const char kDisableOfficeEditingComponentApp[] = | 65 const char kDisableOfficeEditingComponentApp[] = |
63 "disable-office-editing-component-extension"; | 66 "disable-office-editing-component-extension"; |
64 | 67 |
65 // Disables rollback option on reset screen. | 68 // Disables rollback option on reset screen. |
66 const char kDisableRollbackOption[] = "disable-rollback-option"; | 69 const char kDisableRollbackOption[] = "disable-rollback-option"; |
67 | 70 |
68 // Disables volume adjust sound. | 71 // Disables volume adjust sound. |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 | 255 |
253 // Screenshot testing: specifies the directory where the golden screenshots are | 256 // Screenshot testing: specifies the directory where the golden screenshots are |
254 // stored. | 257 // stored. |
255 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 258 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
256 | 259 |
257 // Screenshot testing: specifies the directoru where artifacts will be stored. | 260 // Screenshot testing: specifies the directoru where artifacts will be stored. |
258 const char kArtifactsDir[] = "artifacts-dir"; | 261 const char kArtifactsDir[] = "artifacts-dir"; |
259 | 262 |
260 } // namespace switches | 263 } // namespace switches |
261 } // namespace chromeos | 264 } // namespace chromeos |
OLD | NEW |