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

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

Issue 8342054: net: enable CRL sets behind a command line flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 1 month 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/base/cert_database_nss_unittest.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) 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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 // Print Proxy component within the service process. 427 // Print Proxy component within the service process.
428 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 428 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
429 429
430 // Enables compositing to texture instead of display. 430 // Enables compositing to texture instead of display.
431 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; 431 const char kEnableCompositeToTexture[] = "enable-composite-to-texture";
432 432
433 // Enables establishing a backup TCP connection if a specified timeout is 433 // Enables establishing a backup TCP connection if a specified timeout is
434 // exceeded. 434 // exceeded.
435 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; 435 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs";
436 436
437 // Enables establishing certificate revocation information by downloading a set
438 // of CRLs rather than performing on-line checks.
439 const char kEnableCRLSets[] = "enable-crl-sets";
440
437 // Enables web developers to create apps for Chrome without using crx packages. 441 // Enables web developers to create apps for Chrome without using crx packages.
438 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; 442 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps";
439 443
440 // Enables extension APIs that are in development. 444 // Enables extension APIs that are in development.
441 const char kEnableExperimentalExtensionApis[] = 445 const char kEnableExperimentalExtensionApis[] =
442 "enable-experimental-extension-apis"; 446 "enable-experimental-extension-apis";
443 447
444 // Enables extension alerts, which are currently in development. 448 // Enables extension alerts, which are currently in development.
445 const char kEnableExtensionAlerts[] = "enable-extension-alerts"; 449 const char kEnableExtensionAlerts[] = "enable-extension-alerts";
446 450
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 1287
1284 // ----------------------------------------------------------------------------- 1288 // -----------------------------------------------------------------------------
1285 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1289 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1286 // 1290 //
1287 // You were going to just dump your switches here, weren't you? Instead, please 1291 // You were going to just dump your switches here, weren't you? Instead, please
1288 // put them in alphabetical order above, or in order inside the appropriate 1292 // put them in alphabetical order above, or in order inside the appropriate
1289 // ifdef at the bottom. The order should match the header. 1293 // ifdef at the bottom. The order should match the header.
1290 // ----------------------------------------------------------------------------- 1294 // -----------------------------------------------------------------------------
1291 1295
1292 } // namespace switches 1296 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/base/cert_database_nss_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698