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

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

Issue 2730008: Linux: allow using GNOME Keyring and KWallet for password storage via a command line flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 extern const char kScrollPixels[]; 272 extern const char kScrollPixels[];
273 #endif 273 #endif
274 274
275 #if defined(OS_MACOSX) || defined(OS_WIN) 275 #if defined(OS_MACOSX) || defined(OS_WIN)
276 extern const char kUseSystemSSL[]; 276 extern const char kUseSystemSSL[];
277 #endif 277 #endif
278 278
279 #if defined(OS_POSIX) 279 #if defined(OS_POSIX)
280 extern const char kEnableCrashReporter[]; 280 extern const char kEnableCrashReporter[];
281 extern const char kNoProcessSingletonDialog[]; 281 extern const char kNoProcessSingletonDialog[];
282 #if !defined(OS_MACOSX)
283 extern const char kPasswordStore[];
284 #endif
282 #endif 285 #endif
283 286
284 #if defined(OS_MACOSX) 287 #if defined(OS_MACOSX)
285 extern const char kDisableFlashCoreAnimation[]; 288 extern const char kDisableFlashCoreAnimation[];
286 extern const char kEnableSandboxLogging[]; 289 extern const char kEnableSandboxLogging[];
287 #else 290 #else
288 extern const char kKioskMode[]; 291 extern const char kKioskMode[];
289 #endif 292 #endif
290 293
291 #ifndef NDEBUG 294 #ifndef NDEBUG
(...skipping 14 matching lines...) Expand all
306 #endif 309 #endif
307 // Return true if the switches indicate the seccomp sandbox is enabled. 310 // Return true if the switches indicate the seccomp sandbox is enabled.
308 bool SeccompSandboxEnabled(); 311 bool SeccompSandboxEnabled();
309 312
310 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 313 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
311 // alphabetical order, or in one of the ifdefs (also in order in each section). 314 // alphabetical order, or in one of the ifdefs (also in order in each section).
312 315
313 } // namespace switches 316 } // namespace switches
314 317
315 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 318 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698