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

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

Issue 661241: Linux: implement Client SSL Certificate selection UI (Closed)
Patch Set: fix views and chromeos builds hopefully Created 10 years, 9 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
« no previous file with comments | « chrome/chrome_browser.gypi ('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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 extern const char kTestLoadLibcros[]; 226 extern const char kTestLoadLibcros[];
227 extern const char kProfile[]; 227 extern const char kProfile[];
228 extern const char kLoginProfile[]; 228 extern const char kLoginProfile[];
229 extern const char kChromeosFrame[]; 229 extern const char kChromeosFrame[];
230 #endif 230 #endif
231 231
232 #if defined(OS_WIN) 232 #if defined(OS_WIN)
233 extern const char kUseNSSForSSL[]; 233 extern const char kUseNSSForSSL[];
234 #endif 234 #endif
235 235
236 #if defined(OS_LINUX)
237 extern const char kAutoSSLClientAuth[];
238 #endif
239
240 #if defined(OS_POSIX) 236 #if defined(OS_POSIX)
241 extern const char kEnableCrashReporter[]; 237 extern const char kEnableCrashReporter[];
242 extern const char kNoProcessSingletonDialog[]; 238 extern const char kNoProcessSingletonDialog[];
243 #endif 239 #endif
244 240
245 #if defined(OS_MACOSX) 241 #if defined(OS_MACOSX)
246 extern const char kEnableSandboxLogging[]; 242 extern const char kEnableSandboxLogging[];
247 #else 243 #else
248 extern const char kKioskMode[]; 244 extern const char kKioskMode[];
249 #endif 245 #endif
250 246
251 #ifndef NDEBUG 247 #ifndef NDEBUG
252 extern const char kGearsPluginPathOverride[]; 248 extern const char kGearsPluginPathOverride[];
253 extern const char kInvalidateSyncLogin[]; 249 extern const char kInvalidateSyncLogin[];
254 #endif 250 #endif
255 251
256 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 252 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
257 // alphabetical order, or in one of the ifdefs (also in order in each section). 253 // alphabetical order, or in one of the ifdefs (also in order in each section).
258 254
259 } // namespace switches 255 } // namespace switches
260 256
261 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 257 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698