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

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

Issue 9265026: Implement restart on Idle for Kiosk Mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge. Created 8 years, 11 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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 322
323 #if defined(OS_CHROMEOS) 323 #if defined(OS_CHROMEOS)
324 extern const char kWebUILogin[]; 324 extern const char kWebUILogin[];
325 extern const char kSkipOAuthLogin[]; 325 extern const char kSkipOAuthLogin[];
326 extern const char kEnableBluetooth[]; 326 extern const char kEnableBluetooth[];
327 extern const char kEnableDevicePolicy[]; 327 extern const char kEnableDevicePolicy[];
328 extern const char kEnableGView[]; 328 extern const char kEnableGView[];
329 extern const char kEnableLoginImages[]; 329 extern const char kEnableLoginImages[];
330 extern const char kEnableMobileSetupDialog[]; 330 extern const char kEnableMobileSetupDialog[];
331 extern const char kEnableONCPolicy[]; 331 extern const char kEnableONCPolicy[];
332 extern const char kEnableRetailMode[];
332 extern const char kEnableSensors[]; 333 extern const char kEnableSensors[];
333 extern const char kEnableStaticIPConfig[]; 334 extern const char kEnableStaticIPConfig[];
334 extern const char kLoginManager[]; 335 extern const char kLoginManager[];
335 // TODO(avayvod): Remove this flag when it's unnecessary for testing 336 // TODO(avayvod): Remove this flag when it's unnecessary for testing
336 // purposes. 337 // purposes.
337 extern const char kLoginScreen[]; 338 extern const char kLoginScreen[];
338 extern const char kLoginScreenSize[]; 339 extern const char kLoginScreenSize[];
339 extern const char kTestLoadLibcros[]; 340 extern const char kTestLoadLibcros[];
340 extern const char kLoginProfile[]; 341 extern const char kLoginProfile[];
341 extern const char kLoginUser[]; 342 extern const char kLoginUser[];
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 #if defined(USE_AURA) 397 #if defined(USE_AURA)
397 extern const char kTestCompositor[]; 398 extern const char kTestCompositor[];
398 #endif 399 #endif
399 400
400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 401 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
401 // alphabetical order, or in one of the ifdefs (also in order in each section). 402 // alphabetical order, or in one of the ifdefs (also in order in each section).
402 403
403 } // namespace switches 404 } // namespace switches
404 405
405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 406 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698