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

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

Issue 220009: Provides a certificate for SSL client authentication on NSS sockets.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' 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
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 wchar_t kWinHttpProxyResolver[] = L"winhttp-proxy-resolver"; 262 const wchar_t kWinHttpProxyResolver[] = L"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 wchar_t kDnsLogDetails[] = L"dns-log-details"; 266 extern const wchar_t kDnsLogDetails[] = L"dns-log-details";
267 extern const wchar_t kDnsPrefetchDisable[] = L"dns-prefetch-disable"; 267 extern const wchar_t kDnsPrefetchDisable[] = L"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 extern const wchar_t kAutoSSLClientAuth[] = L"auto-ssl-client-auth";
277 #endif
278
269 // Enables support to debug printing subsystem. 279 // Enables support to debug printing subsystem.
270 const wchar_t kDebugPrint[] = L"debug-print"; 280 const wchar_t kDebugPrint[] = L"debug-print";
271 281
272 // Prints the pages on the screen. 282 // Prints the pages on the screen.
273 const wchar_t kPrint[] = L"print"; 283 const wchar_t kPrint[] = L"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 wchar_t kDisableDevTools[] = L"disable-dev-tools"; 286 const wchar_t kDisableDevTools[] = L"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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 const wchar_t kEnableExperimentalWebGL[] = L"enable-webgl"; 638 const wchar_t kEnableExperimentalWebGL[] = L"enable-webgl";
629 639
630 // Enabled desktop notifications. 640 // Enabled desktop notifications.
631 const wchar_t kEnableDesktopNotifications[] = 641 const wchar_t kEnableDesktopNotifications[] =
632 L"enable-desktop-notifications"; 642 L"enable-desktop-notifications";
633 643
634 // Enable Web Sockets support. 644 // Enable Web Sockets support.
635 const wchar_t kEnableWebSockets[] = L"enable-web-sockets"; 645 const wchar_t kEnableWebSockets[] = L"enable-web-sockets";
636 646
637 } // namespace switches 647 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698