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

Side by Side Diff: chrome/common/chrome_switches.h

Issue 9455038: Screensaver at login screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review changes. Created 8 years, 10 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
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 // Defines all the command-line switches used by Chrome. 5 // Defines all the command-line switches used by Chrome.
6 6
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ 8 #define CHROME_COMMON_CHROME_SWITCHES_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 extern const char kWhitelistedExtensionID[]; 312 extern const char kWhitelistedExtensionID[];
313 extern const char kWindowPosition[]; 313 extern const char kWindowPosition[];
314 extern const char kWindowSize[]; 314 extern const char kWindowSize[];
315 extern const char kWinHttpProxyResolver[]; 315 extern const char kWinHttpProxyResolver[];
316 316
317 #if defined(OS_CHROMEOS) 317 #if defined(OS_CHROMEOS)
318 extern const char kSkipOAuthLogin[]; 318 extern const char kSkipOAuthLogin[];
319 extern const char kEnableBluetooth[]; 319 extern const char kEnableBluetooth[];
320 extern const char kEnableDevicePolicy[]; 320 extern const char kEnableDevicePolicy[];
321 extern const char kEnableGView[]; 321 extern const char kEnableGView[];
322 extern const char kEnableKioskMode[];
322 extern const char kEnableMobileSetupDialog[]; 323 extern const char kEnableMobileSetupDialog[];
323 extern const char kEnableONCPolicy[]; 324 extern const char kEnableONCPolicy[];
324 extern const char kEnableSensors[]; 325 extern const char kEnableSensors[];
325 extern const char kEnableStaticIPConfig[]; 326 extern const char kEnableStaticIPConfig[];
327 extern const char kKioskModeScreensaverPath[];
326 extern const char kLoginManager[]; 328 extern const char kLoginManager[];
327 // TODO(avayvod): Remove this flag when it's unnecessary for testing 329 // TODO(avayvod): Remove this flag when it's unnecessary for testing
328 // purposes. 330 // purposes.
329 extern const char kLoginScreen[]; 331 extern const char kLoginScreen[];
330 extern const char kLoginScreenSize[]; 332 extern const char kLoginScreenSize[];
331 extern const char kTestLoadLibcros[]; 333 extern const char kTestLoadLibcros[];
332 extern const char kLoginProfile[]; 334 extern const char kLoginProfile[];
333 extern const char kLoginUser[]; 335 extern const char kLoginUser[];
334 extern const char kLoginPassword[]; 336 extern const char kLoginPassword[];
335 extern const char kGuestSession[]; 337 extern const char kGuestSession[];
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 #else 385 #else
384 extern const char kEnablePrintPreview[]; 386 extern const char kEnablePrintPreview[];
385 #endif 387 #endif
386 388
387 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 389 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
388 // alphabetical order, or in one of the ifdefs (also in order in each section). 390 // alphabetical order, or in one of the ifdefs (also in order in each section).
389 391
390 } // namespace switches 392 } // namespace switches
391 393
392 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 394 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698