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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 22447005: chromeos: Switch --first-boot to --first-exec-after-boot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 const char kEnterpriseEnrollmentModulusLimit[] = 113 const char kEnterpriseEnrollmentModulusLimit[] =
114 "enterprise-enrollment-modulus-limit"; 114 "enterprise-enrollment-modulus-limit";
115 115
116 // Shows the selecting checkboxes in the Files.app. 116 // Shows the selecting checkboxes in the Files.app.
117 const char kFileManagerShowCheckboxes[] = "file-manager-show-checkboxes"; 117 const char kFileManagerShowCheckboxes[] = "file-manager-show-checkboxes";
118 118
119 // Enables the webstore integration feature in the Files.app. 119 // Enables the webstore integration feature in the Files.app.
120 const char kFileManagerEnableWebstoreIntegration[] = 120 const char kFileManagerEnableWebstoreIntegration[] =
121 "file-manager-enable-webstore-integration"; 121 "file-manager-enable-webstore-integration";
122 122
123 // Passed to Chrome on first boot. Not passed on restart after sign out. 123 // Passed to Chrome the first time that it's run after the system boots.
124 const char kFirstBoot[] = "first-boot"; 124 // Not passed on restart after sign out.
125 const char kFirstExecAfterBoot[] = "first-exec-after-boot";
125 126
126 // Usually in browser tests the usual login manager bringup is skipped so that 127 // Usually in browser tests the usual login manager bringup is skipped so that
127 // tests can change how it's brought up. This flag disables that. 128 // tests can change how it's brought up. This flag disables that.
128 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; 129 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests";
129 130
130 // Indicates that the browser is in "browse without sign-in" (Guest session) 131 // Indicates that the browser is in "browse without sign-in" (Guest session)
131 // mode. Should completely disable extensions, sync and bookmarks. 132 // mode. Should completely disable extensions, sync and bookmarks.
132 const char kGuestSession[] = "bwsi"; 133 const char kGuestSession[] = "bwsi";
133 134
134 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for 135 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 // This option is for testing the chromeos build of chrome on the desktop only. 184 // This option is for testing the chromeos build of chrome on the desktop only.
184 const char kStubCrosSettings[] = "stub-cros-settings"; 185 const char kStubCrosSettings[] = "stub-cros-settings";
185 186
186 // Enables usage of the new ManagedNetworkConfigurationHandler and 187 // Enables usage of the new ManagedNetworkConfigurationHandler and
187 // NetworkConfigurationHandler singletons. 188 // NetworkConfigurationHandler singletons.
188 const char kUseNewNetworkConfigurationHandlers[] = 189 const char kUseNewNetworkConfigurationHandlers[] =
189 "use-new-network-configuration-handlers"; 190 "use-new-network-configuration-handlers";
190 191
191 } // namespace switches 192 } // namespace switches
192 } // namespace chromeos 193 } // 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