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

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

Issue 147233: Basic implentation of the client auth UI (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 256
257 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is 257 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is
258 // to use Chromium's network stack to fetch, and V8 to evaluate. 258 // to use Chromium's network stack to fetch, and V8 to evaluate.
259 const wchar_t kWinHttpProxyResolver[] = L"winhttp-proxy-resolver"; 259 const wchar_t kWinHttpProxyResolver[] = L"winhttp-proxy-resolver";
260 260
261 // Chrome will support prefetching of DNS information. Until this becomes 261 // Chrome will support prefetching of DNS information. Until this becomes
262 // the default, we'll provide a command line switch. 262 // the default, we'll provide a command line switch.
263 extern const wchar_t kDnsLogDetails[] = L"dns-log-details"; 263 extern const wchar_t kDnsLogDetails[] = L"dns-log-details";
264 extern const wchar_t kDnsPrefetchDisable[] = L"dns-prefetch-disable"; 264 extern const wchar_t kDnsPrefetchDisable[] = L"dns-prefetch-disable";
265 265
266 // A temporary switch before we implement the client certificate selection UI.
267 // When an SSL server requests client authentication, select a client
268 // certificate automatically.
269 // WARNING: This switch has privacy issues because it reveals the user's
270 // identity to any server that requests a client certificate without the
271 // user's consent.
272 extern const wchar_t kAutoSSLClientAuth[] = L"auto-ssl-client-auth";
273
274 // Enables support to debug printing subsystem. 266 // Enables support to debug printing subsystem.
275 const wchar_t kDebugPrint[] = L"debug-print"; 267 const wchar_t kDebugPrint[] = L"debug-print";
276 268
277 // Prints the pages on the screen. 269 // Prints the pages on the screen.
278 const wchar_t kPrint[] = L"print"; 270 const wchar_t kPrint[] = L"print";
279 271
280 // Allow initialization of all activex controls. This is only to help website 272 // Allow initialization of all activex controls. This is only to help website
281 // developers test their controls to see if they are compatible in Chrome. 273 // developers test their controls to see if they are compatible in Chrome.
282 // Note there's a duplicate value in activex_shared.cc (to avoid 274 // Note there's a duplicate value in activex_shared.cc (to avoid
283 // dependency on chrome module). Please change both locations at the same time. 275 // dependency on chrome module). Please change both locations at the same time.
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 // On Windows, converts the page to the currently-installed monitor profile. 518 // On Windows, converts the page to the currently-installed monitor profile.
527 // This does NOT enable color management for images. The source is still assumed 519 // This does NOT enable color management for images. The source is still assumed
528 // to be sRGB. 520 // to be sRGB.
529 const wchar_t kEnableMonitorProfile[] = L"enable-monitor-profile"; 521 const wchar_t kEnableMonitorProfile[] = L"enable-monitor-profile";
530 522
531 // Enable WebKit's XSSAuditor to mitigate reflective XSS. The XSSAuditor is 523 // Enable WebKit's XSSAuditor to mitigate reflective XSS. The XSSAuditor is
532 // still experimental. 524 // still experimental.
533 const wchar_t kEnableXSSAuditor[] = L"enable-xss-auditor"; 525 const wchar_t kEnableXSSAuditor[] = L"enable-xss-auditor";
534 526
535 } // namespace switches 527 } // namespace switches
OLDNEW
« chrome/browser/ssl/ssl_client_auth_handler.h ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698