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

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

Issue 6350010: Put some plug-ins behind an infobar, where they have:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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
11 #include "build/build_config.h" 11 #include "build/build_config.h"
12 #include "base/base_switches.h" 12 #include "base/base_switches.h"
13 13
14 namespace switches { 14 namespace switches {
15 15
16 // ----------------------------------------------------------------------------- 16 // -----------------------------------------------------------------------------
17 // Can't find the switch you are looking for? Try looking in 17 // Can't find the switch you are looking for? Try looking in
18 // base/base_switches.cc instead. 18 // base/base_switches.cc instead.
19 // ----------------------------------------------------------------------------- 19 // -----------------------------------------------------------------------------
20 20
21 // All switches in alphabetical order. The switches should be documented 21 // All switches in alphabetical order. The switches should be documented
22 // alongside the definition of their values in the .cc file. 22 // alongside the definition of their values in the .cc file.
23 extern const char kActivateOnLaunch[]; 23 extern const char kActivateOnLaunch[];
24 extern const char kAllowFileAccessFromFiles[]; 24 extern const char kAllowFileAccessFromFiles[];
25 extern const char kAllowFileAccess[]; 25 extern const char kAllowFileAccess[];
26 extern const char kAllowOutdatedPlugins[]; 26 extern const char kAllowOutdatedPlugins[];
27 extern const char kAllowSSLMITMProxies[]; 27 extern const char kAllowSSLMITMProxies[];
28 extern const char kAllowSandboxDebugging[]; 28 extern const char kAllowSandboxDebugging[];
29 extern const char kAllowScriptingGallery[]; 29 extern const char kAllowScriptingGallery[];
30 extern const char kAlwaysAuthorizePlugins[];
30 extern const char kAlwaysEnableDevTools[]; 31 extern const char kAlwaysEnableDevTools[];
31 extern const char kApp[]; 32 extern const char kApp[];
32 extern const char kAppId[]; 33 extern const char kAppId[];
33 extern const char kAppsGalleryReturnTokens[]; 34 extern const char kAppsGalleryReturnTokens[];
34 extern const char kAppsGalleryURL[]; 35 extern const char kAppsGalleryURL[];
35 extern const char kAppsGalleryUpdateURL[]; 36 extern const char kAppsGalleryUpdateURL[];
36 extern const char kAppsNoThrob[]; 37 extern const char kAppsNoThrob[];
37 extern const char kAuthNegotiateDelegateWhitelist[]; 38 extern const char kAuthNegotiateDelegateWhitelist[];
38 extern const char kAuthSchemes[]; 39 extern const char kAuthSchemes[];
39 extern const char kAuthServerWhitelist[]; 40 extern const char kAuthServerWhitelist[];
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 414
414 // Return true if the switches indicate the seccomp sandbox is enabled. 415 // Return true if the switches indicate the seccomp sandbox is enabled.
415 bool SeccompSandboxEnabled(); 416 bool SeccompSandboxEnabled();
416 417
417 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 418 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
418 // alphabetical order, or in one of the ifdefs (also in order in each section). 419 // alphabetical order, or in one of the ifdefs (also in order in each section).
419 420
420 } // namespace switches 421 } // namespace switches
421 422
422 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 423 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698