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

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

Issue 276037: Provides a certificate for SSL client authentication on NSS sockets.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Remove extern from chrome_switches.cc Created 11 years, 2 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/common/chrome_switches.h ('k') | net/socket/ssl_client_socket_nss.h » ('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 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 259
260 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is 260 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is
261 // to use Chromium's network stack to fetch, and V8 to evaluate. 261 // to use Chromium's network stack to fetch, and V8 to evaluate.
262 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; 262 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver";
263 263
264 // Chrome will support prefetching of DNS information. Until this becomes 264 // Chrome will support prefetching of DNS information. Until this becomes
265 // the default, we'll provide a command line switch. 265 // the default, we'll provide a command line switch.
266 extern const char kDnsLogDetails[] = "dns-log-details"; 266 extern const char kDnsLogDetails[] = "dns-log-details";
267 extern const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; 267 extern const char kDnsPrefetchDisable[] = "dns-prefetch-disable";
268 268
269 #if defined(OS_LINUX)
270 // A temporary switch before we implement the client certificate selection UI.
271 // When an SSL server requests client authentication, select a client
272 // certificate automatically.
273 // WARNING: This switch has privacy issues because it reveals the user's
274 // identity to any server that requests a client certificate without the
275 // user's consent.
276 const char kAutoSSLClientAuth[] = "auto-ssl-client-auth";
277 #endif
278
269 // Enables support to debug printing subsystem. 279 // Enables support to debug printing subsystem.
270 const char kDebugPrint[] = "debug-print"; 280 const char kDebugPrint[] = "debug-print";
271 281
272 // Prints the pages on the screen. 282 // Prints the pages on the screen.
273 const char kPrint[] = "print"; 283 const char kPrint[] = "print";
274 284
275 // Browser flag to disable the web inspector for all renderers. 285 // Browser flag to disable the web inspector for all renderers.
276 const char kDisableDevTools[] = "disable-dev-tools"; 286 const char kDisableDevTools[] = "disable-dev-tools";
277 287
278 // Enable web inspector for all windows, even if they're part of the browser. 288 // Enable web inspector for all windows, even if they're part of the browser.
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 // Enable experimental WebGL support. 640 // Enable experimental WebGL support.
631 const char kEnableExperimentalWebGL[] = "enable-webgl"; 641 const char kEnableExperimentalWebGL[] = "enable-webgl";
632 642
633 // Enabled desktop notifications. 643 // Enabled desktop notifications.
634 const char kEnableDesktopNotifications[] = "enable-desktop-notifications"; 644 const char kEnableDesktopNotifications[] = "enable-desktop-notifications";
635 645
636 // Enable Web Sockets support. 646 // Enable Web Sockets support.
637 const char kEnableWebSockets[] = "enable-web-sockets"; 647 const char kEnableWebSockets[] = "enable-web-sockets";
638 648
639 } // namespace switches 649 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/socket/ssl_client_socket_nss.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698