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

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

Issue 11418291: Adding about:flags option to enable guest mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 extern const char kTrustedSpdyProxy[]; 347 extern const char kTrustedSpdyProxy[];
348 extern const char kTryChromeAgain[]; 348 extern const char kTryChromeAgain[];
349 extern const char kUninstall[]; 349 extern const char kUninstall[];
350 extern const char kUseSpdy[]; 350 extern const char kUseSpdy[];
351 extern const char kUseGpuInTests[]; 351 extern const char kUseGpuInTests[];
352 extern const char kUseSpellingService[]; 352 extern const char kUseSpellingService[];
353 extern const char kMaxSpdySessionsPerDomain[]; 353 extern const char kMaxSpdySessionsPerDomain[];
354 extern const char kMaxSpdyConcurrentStreams[]; 354 extern const char kMaxSpdyConcurrentStreams[];
355 extern const char kUserDataDir[]; 355 extern const char kUserDataDir[];
356 extern const char kUseWebBasedSigninFlow[]; 356 extern const char kUseWebBasedSigninFlow[];
357 extern const char kEnableDesktopGuestMode[];
Roger Tawa OOO till Jul 10th 2012/12/03 15:57:42 The constants in this file should be in alphabetic
jwd 2012/12/03 17:40:32 Done.
357 extern const char kVariationsServerURL[]; 358 extern const char kVariationsServerURL[];
358 extern const char kVersion[]; 359 extern const char kVersion[];
359 extern const char kViewerConnection[]; 360 extern const char kViewerConnection[];
360 extern const char kVisitURLs[]; 361 extern const char kVisitURLs[];
361 extern const char kWebIntentsNativeServicesEnabled[]; 362 extern const char kWebIntentsNativeServicesEnabled[];
362 extern const char kWebIntentsInvocationEnabled[]; 363 extern const char kWebIntentsInvocationEnabled[];
363 extern const char kWhitelistedExtensionID[]; 364 extern const char kWhitelistedExtensionID[];
364 extern const char kWindowPosition[]; 365 extern const char kWindowPosition[];
365 extern const char kWindowSize[]; 366 extern const char kWindowSize[];
366 extern const char kWinHttpProxyResolver[]; 367 extern const char kWinHttpProxyResolver[];
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 467
467 namespace chrome { 468 namespace chrome {
468 469
469 // Returns true if the chrome style dialog is enabled. 470 // Returns true if the chrome style dialog is enabled.
470 // TODO(sail): Remove this once the feature is fully baked. 471 // TODO(sail): Remove this once the feature is fully baked.
471 bool UseChromeStyleDialogs(); 472 bool UseChromeStyleDialogs();
472 473
473 } // namespace chrome 474 } // namespace chrome
474 475
475 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 476 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698