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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 384973004: Introduce disable-gaia-services for fake telemetry login. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 177
178 // Specifies the user which is already logged in. 178 // Specifies the user which is already logged in.
179 const char kLoginUser[] = "login-user"; 179 const char kLoginUser[] = "login-user";
180 180
181 // Enables natural scroll by default. 181 // Enables natural scroll by default.
182 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; 182 const char kNaturalScrollDefault[] = "enable-natural-scroll-default";
183 183
184 // Skips all other OOBE pages after user login. 184 // Skips all other OOBE pages after user login.
185 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; 185 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin";
186 186
187 // Disable session restore. Used by 'fake' telemetry login.
Nikita (slow) 2014/07/14 09:32:59 nit: Disable OAuth session restore.
achuithb 2014/07/16 20:00:52 Done.
188 const char kDisableSessionRestore[] = "disable-session-restore";
189
187 // Interval at which we check for total time on OOBE. 190 // Interval at which we check for total time on OOBE.
188 const char kOobeTimerInterval[] = "oobe-timer-interval"; 191 const char kOobeTimerInterval[] = "oobe-timer-interval";
189 192
190 // Indicates that a guest session has been started before OOBE completion. 193 // Indicates that a guest session has been started before OOBE completion.
191 const char kOobeGuestSession[] = "oobe-guest-session"; 194 const char kOobeGuestSession[] = "oobe-guest-session";
192 195
193 // Specifies power stub behavior: 196 // Specifies power stub behavior:
194 // 'cycle=2' - Cycles power states every 2 seconds. 197 // 'cycle=2' - Cycles power states every 2 seconds.
195 // See FakeDBusThreadManager::ParsePowerCommandLineSwitch for full details. 198 // See FakeDBusThreadManager::ParsePowerCommandLineSwitch for full details.
196 const char kPowerStub[] = "power-stub"; 199 const char kPowerStub[] = "power-stub";
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; 235 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions";
233 236
234 // Forces first-run UI to be shown for every login. 237 // Forces first-run UI to be shown for every login.
235 const char kForceFirstRunUI[] = "force-first-run-ui"; 238 const char kForceFirstRunUI[] = "force-first-run-ui";
236 239
237 // Enables testing for auto update UI. 240 // Enables testing for auto update UI.
238 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; 241 const char kTestAutoUpdateUI[] = "test-auto-update-ui";
239 242
240 } // namespace switches 243 } // namespace switches
241 } // namespace chromeos 244 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698