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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 566993002: Add lucid sleep flag and debugging helper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // locate the device. 80 // locate the device.
81 const char kEnableConsumerManagement[] = "enable-consumer-management"; 81 const char kEnableConsumerManagement[] = "enable-consumer-management";
82 82
83 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint 83 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint
84 // of GAIA. 84 // of GAIA.
85 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; 85 const char kEnableEmbeddedSignin[] = "enable-embedded-signin";
86 86
87 // Enabled sharing assets for installed default apps. 87 // Enabled sharing assets for installed default apps.
88 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; 88 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing";
89 89
90 // Enables experimental features for maintaining persistent network
91 // connectivity.
92 const char kEnableLucidSleep[] = "enable-lucid-sleep";
93
90 // Enables notifications about captive portals in session. 94 // Enables notifications about captive portals in session.
91 const char kEnableNetworkPortalNotification[] = 95 const char kEnableNetworkPortalNotification[] =
92 "enable-network-portal-notification"; 96 "enable-network-portal-notification";
93 97
94 // Enables rollback option on reset screen. 98 // Enables rollback option on reset screen.
95 const char kEnableRollbackOption[] = "enable-rollback-option"; 99 const char kEnableRollbackOption[] = "enable-rollback-option";
96 100
97 // Enables touchpad three-finger-click as middle button. 101 // Enables touchpad three-finger-click as middle button.
98 const char kEnableTouchpadThreeFingerClick[] 102 const char kEnableTouchpadThreeFingerClick[]
99 = "enable-touchpad-three-finger-click"; 103 = "enable-touchpad-three-finger-click";
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 240
237 // Screenshot testing: specifies the directory where the golden screenshots are 241 // Screenshot testing: specifies the directory where the golden screenshots are
238 // stored. 242 // stored.
239 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; 243 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir";
240 244
241 // Screenshot testing: specifies the directoru where artifacts will be stored. 245 // Screenshot testing: specifies the directoru where artifacts will be stored.
242 const char kArtifactsDir[] = "artifacts-dir"; 246 const char kArtifactsDir[] = "artifacts-dir";
243 247
244 } // namespace switches 248 } // namespace switches
245 } // namespace chromeos 249 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698