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

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

Issue 7058049: Added client-side support for the TLS cached info extension. This feature is disabled by default ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; 362 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins";
363 363
364 // Enables AeroPeek for each tab. (This switch only works on Windows 7). 364 // Enables AeroPeek for each tab. (This switch only works on Windows 7).
365 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; 365 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs";
366 366
367 // Enable the inclusion of non-standard ports when generating the Kerberos SPN 367 // Enable the inclusion of non-standard ports when generating the Kerberos SPN
368 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN 368 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN
369 // for more background. 369 // for more background.
370 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 370 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
371 371
372 // Enables TLS cached info extension.
373 const char kEnableCachedInfo[] = "enable-ssl-cached-info";
374
372 // This flag enables UI for clearing server data. Temporarily in place 375 // This flag enables UI for clearing server data. Temporarily in place
373 // until there's a server endpoint deployed. 376 // until there's a server endpoint deployed.
374 const char kEnableClearServerData[] = "enable-clear-server-data"; 377 const char kEnableClearServerData[] = "enable-clear-server-data";
375 378
376 // Enable click-to-play for blocked plug-ins. 379 // Enable click-to-play for blocked plug-ins.
377 const char kEnableClickToPlay[] = "enable-click-to-play"; 380 const char kEnableClickToPlay[] = "enable-click-to-play";
378 381
379 // This applies only when the process type is "service". Enables the 382 // This applies only when the process type is "service". Enables the
380 // Cloud Print Proxy component within the service process. 383 // Cloud Print Proxy component within the service process.
381 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 384 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
1175 1178
1176 // ----------------------------------------------------------------------------- 1179 // -----------------------------------------------------------------------------
1177 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1180 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1178 // 1181 //
1179 // You were going to just dump your switches here, weren't you? Instead, 1182 // You were going to just dump your switches here, weren't you? Instead,
1180 // please put them in alphabetical order above, or in order inside the 1183 // please put them in alphabetical order above, or in order inside the
1181 // appropriate ifdef at the bottom. The order should match the header. 1184 // appropriate ifdef at the bottom. The order should match the header.
1182 // ----------------------------------------------------------------------------- 1185 // -----------------------------------------------------------------------------
1183 1186
1184 } // namespace switches 1187 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698