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

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

Issue 6242002: Add a command line flag to specify the minimum flash version implementing the NPP_ClearSiteData API. (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
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 extern const char kLoadPlugin[]; 225 extern const char kLoadPlugin[];
226 extern const char kExtraPluginDir[]; 226 extern const char kExtraPluginDir[];
227 extern const char kLogNetLog[]; 227 extern const char kLogNetLog[];
228 extern const char kLogPluginMessages[]; 228 extern const char kLogPluginMessages[];
229 extern const char kLoggingLevel[]; 229 extern const char kLoggingLevel[];
230 extern const char kMakeDefaultBrowser[]; 230 extern const char kMakeDefaultBrowser[];
231 extern const char kMediaCacheSize[]; 231 extern const char kMediaCacheSize[];
232 extern const char kMemoryProfiling[]; 232 extern const char kMemoryProfiling[];
233 extern const char kMessageLoopHistogrammer[]; 233 extern const char kMessageLoopHistogrammer[];
234 extern const char kMetricsRecordingOnly[]; 234 extern const char kMetricsRecordingOnly[];
235 extern const char kMinClearSiteDataFlashVersion[];
235 extern const char kNaClDebugIP[]; 236 extern const char kNaClDebugIP[];
236 extern const char kNaClDebugPorts[]; 237 extern const char kNaClDebugPorts[];
237 extern const char kNaClBrokerProcess[]; 238 extern const char kNaClBrokerProcess[];
238 extern const char kNaClLoaderProcess[]; 239 extern const char kNaClLoaderProcess[];
239 extern const char kNaClStartupDialog[]; 240 extern const char kNaClStartupDialog[];
240 extern const char kNewChromeUISecurityModel[]; 241 extern const char kNewChromeUISecurityModel[];
241 extern const char kNoDefaultBrowserCheck[]; 242 extern const char kNoDefaultBrowserCheck[];
242 extern const char kNoEvents[]; 243 extern const char kNoEvents[];
243 extern const char kNoExperiments[]; 244 extern const char kNoExperiments[];
244 extern const char kNoFirstRun[]; 245 extern const char kNoFirstRun[];
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 411
411 // Return true if the switches indicate the seccomp sandbox is enabled. 412 // Return true if the switches indicate the seccomp sandbox is enabled.
412 bool SeccompSandboxEnabled(); 413 bool SeccompSandboxEnabled();
413 414
414 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
415 // alphabetical order, or in one of the ifdefs (also in order in each section). 416 // alphabetical order, or in one of the ifdefs (also in order in each section).
416 417
417 } // namespace switches 418 } // namespace switches
418 419
419 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698