Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 614643003: Rollback feature is taken out of the flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos/chromeos_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 // Disable Office Editing for Docs, Sheets & Slides component app so handlers 59 // Disable Office Editing for Docs, Sheets & Slides component app so handlers
60 // won't be registered, making it possible to install another version for 60 // won't be registered, making it possible to install another version for
61 // testing. 61 // testing.
62 const char kDisableOfficeEditingComponentApp[] = 62 const char kDisableOfficeEditingComponentApp[] =
63 "disable-office-editing-component-extension"; 63 "disable-office-editing-component-extension";
64 64
65 // Disables rollback option on reset screen.
66 const char kDisableRollbackOption[] = "disable-rollback-option";
67
65 // Disables volume adjust sound. 68 // Disables volume adjust sound.
66 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; 69 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound";
67 70
68 // Disables notifications about captive portals in session. 71 // Disables notifications about captive portals in session.
69 const char kDisableNetworkPortalNotification[] = 72 const char kDisableNetworkPortalNotification[] =
70 "disable-network-portal-notification"; 73 "disable-network-portal-notification";
71 74
72 // Enables switching between different cellular carriers from the UI. 75 // Enables switching between different cellular carriers from the UI.
73 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; 76 const char kEnableCarrierSwitching[] = "enable-carrier-switching";
74 77
75 // Enables the next generation version of ChromeVox. 78 // Enables the next generation version of ChromeVox.
76 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; 79 const char kEnableChromeVoxNext[] = "enable-chromevox-next";
77 80
78 // Enables consumer management, which allows user to enroll, remotely lock and 81 // Enables consumer management, which allows user to enroll, remotely lock and
79 // locate the device. 82 // locate the device.
80 const char kEnableConsumerManagement[] = "enable-consumer-management"; 83 const char kEnableConsumerManagement[] = "enable-consumer-management";
81 84
82 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint 85 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint
83 // of GAIA. 86 // of GAIA.
84 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; 87 const char kEnableEmbeddedSignin[] = "enable-embedded-signin";
85 88
86 // Enabled sharing assets for installed default apps. 89 // Enabled sharing assets for installed default apps.
87 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; 90 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing";
88 91
89 // Enables notifications about captive portals in session. 92 // Enables notifications about captive portals in session.
90 const char kEnableNetworkPortalNotification[] = 93 const char kEnableNetworkPortalNotification[] =
91 "enable-network-portal-notification"; 94 "enable-network-portal-notification";
92 95
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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 237
238 // Screenshot testing: specifies the directory where the golden screenshots are 238 // Screenshot testing: specifies the directory where the golden screenshots are
239 // stored. 239 // stored.
240 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; 240 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir";
241 241
242 // Screenshot testing: specifies the directoru where artifacts will be stored. 242 // Screenshot testing: specifies the directoru where artifacts will be stored.
243 const char kArtifactsDir[] = "artifacts-dir"; 243 const char kArtifactsDir[] = "artifacts-dir";
244 244
245 } // namespace switches 245 } // namespace switches
246 } // namespace chromeos 246 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/chromeos_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698