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

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, 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) 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 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
1274 1278
1275 // ----------------------------------------------------------------------------- 1279 // -----------------------------------------------------------------------------
1276 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1280 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1277 // 1281 //
1278 // You were going to just dump your switches here, weren't you? Instead, please 1282 // You were going to just dump your switches here, weren't you? Instead, please
1279 // put them in alphabetical order above, or in order inside the appropriate 1283 // put them in alphabetical order above, or in order inside the appropriate
1280 // ifdef at the bottom. The order should match the header. 1284 // ifdef at the bottom. The order should match the header.
1281 // ----------------------------------------------------------------------------- 1285 // -----------------------------------------------------------------------------
1282 1286
1283 } // namespace switches 1287 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698