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

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

Issue 573041: Add the ssl_client_socket_nss_factory.h header and declare... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Sync with the current trunk. Created 10 years, 10 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/browser_main.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 extern const char kSyncServiceURL[]; 175 extern const char kSyncServiceURL[];
176 extern const char kSyncerThreadTimedStop[]; 176 extern const char kSyncerThreadTimedStop[];
177 extern const char kTabCountToLoadOnSessionRestore[]; 177 extern const char kTabCountToLoadOnSessionRestore[];
178 extern const char kTestName[]; 178 extern const char kTestName[];
179 extern const char kTestSandbox[]; 179 extern const char kTestSandbox[];
180 extern const char kTestingChannelID[]; 180 extern const char kTestingChannelID[];
181 extern const char kThumbnailStore[]; 181 extern const char kThumbnailStore[];
182 extern const char kTrustedPlugins[]; 182 extern const char kTrustedPlugins[];
183 extern const char kTryChromeAgain[]; 183 extern const char kTryChromeAgain[];
184 extern const char kUninstall[]; 184 extern const char kUninstall[];
185 extern const char kUseNSSForSSL[];
186 extern const char kUseSpdy[]; 185 extern const char kUseSpdy[];
187 extern const char kFixedHost[]; 186 extern const char kFixedHost[];
188 extern const char kFixedHttpPort[]; 187 extern const char kFixedHttpPort[];
189 extern const char kFixedHttpsPort[]; 188 extern const char kFixedHttpsPort[];
190 extern const char kUseLowFragHeapCrt[]; 189 extern const char kUseLowFragHeapCrt[];
191 extern const char kUserAgent[]; 190 extern const char kUserAgent[];
192 extern const char kUserDataDir[]; 191 extern const char kUserDataDir[];
193 extern const char kUserScriptsDir[]; 192 extern const char kUserScriptsDir[];
194 extern const char kUtilityCmdPrefix[]; 193 extern const char kUtilityCmdPrefix[];
195 extern const char kUtilityProcess[]; 194 extern const char kUtilityProcess[];
(...skipping 10 matching lines...) Expand all
206 #if defined(OS_CHROMEOS) 205 #if defined(OS_CHROMEOS)
207 extern const char kCookiePipe[]; 206 extern const char kCookiePipe[];
208 extern const char kEnableGView[]; 207 extern const char kEnableGView[];
209 extern const char kLoginManager[]; 208 extern const char kLoginManager[];
210 extern const char kSessionManagerPipe[]; 209 extern const char kSessionManagerPipe[];
211 extern const char kTestLoadLibcros[]; 210 extern const char kTestLoadLibcros[];
212 extern const char kProfile[]; 211 extern const char kProfile[];
213 extern const char kChromeosFrame[]; 212 extern const char kChromeosFrame[];
214 #endif 213 #endif
215 214
215 #if defined(OS_WIN)
216 extern const char kUseNSSForSSL[];
217 #endif
218
216 #if defined(OS_LINUX) 219 #if defined(OS_LINUX)
217 extern const char kAutoSSLClientAuth[]; 220 extern const char kAutoSSLClientAuth[];
218 #endif 221 #endif
219 222
220 #if defined(OS_POSIX) 223 #if defined(OS_POSIX)
221 extern const char kEnableCrashReporter[]; 224 extern const char kEnableCrashReporter[];
222 extern const char kNoProcessSingletonDialog[]; 225 extern const char kNoProcessSingletonDialog[];
223 #endif 226 #endif
224 227
225 #if defined(OS_MACOSX) 228 #if defined(OS_MACOSX)
226 extern const char kEnableSandboxLogging[]; 229 extern const char kEnableSandboxLogging[];
227 #else 230 #else
228 extern const char kKioskMode[]; 231 extern const char kKioskMode[];
229 #endif 232 #endif
230 233
231 #ifndef NDEBUG 234 #ifndef NDEBUG
232 extern const char kGearsPluginPathOverride[]; 235 extern const char kGearsPluginPathOverride[];
233 extern const char kInvalidateSyncLogin[]; 236 extern const char kInvalidateSyncLogin[];
234 #endif 237 #endif
235 238
236 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 239 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
237 // alphabetical order, or in one of the ifdefs (also in order in each section). 240 // alphabetical order, or in one of the ifdefs (also in order in each section).
238 241
239 } // namespace switches 242 } // namespace switches
240 243
241 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 244 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_main.cc ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698