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

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

Issue 6831025: Adds support for the DHCP portion of the WPAD (proxy auto-discovery) protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix issue found by unit testing on a slow machine. Created 9 years, 8 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 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 // Enables compositing to texture instead of display. 390 // Enables compositing to texture instead of display.
391 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; 391 const char kEnableCompositeToTexture[] = "enable-composite-to-texture";
392 392
393 // Enables establishing a backup TCP connection if a specified timeout is 393 // Enables establishing a backup TCP connection if a specified timeout is
394 // exceeded. 394 // exceeded.
395 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; 395 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs";
396 396
397 // Enables web developers to create apps for Chrome without using crx packages. 397 // Enables web developers to create apps for Chrome without using crx packages.
398 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; 398 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps";
399 399
400 // Enables retrieval of PAC URLs from DHCP as per the WPAD standard. Note
401 // that this feature is not supported on all platforms, and using the flag
402 // is a no-op on such platforms.
403 const char kEnableDhcpPac[] = "enable-dhcp-wpad";
404
400 // Enable DNS side checking of certificates. Still experimental, should only 405 // Enable DNS side checking of certificates. Still experimental, should only
401 // be used by developers at the current time. 406 // be used by developers at the current time.
402 const char kEnableDNSCertProvenanceChecking[] = 407 const char kEnableDNSCertProvenanceChecking[] =
403 "enable-dns-cert-provenance-checking"; 408 "enable-dns-cert-provenance-checking";
404 409
405 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; 410 const char kEnableDNSSECCerts[] = "enable-dnssec-certs";
406 411
407 // Enables app manifest features that are in development. 412 // Enables app manifest features that are in development.
408 const char kEnableExperimentalAppManifests[] = 413 const char kEnableExperimentalAppManifests[] =
409 "enable-experimental-app-manifests"; 414 "enable-experimental-app-manifests";
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 1130
1126 // ----------------------------------------------------------------------------- 1131 // -----------------------------------------------------------------------------
1127 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1132 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1128 // 1133 //
1129 // You were going to just dump your switches here, weren't you? Instead, 1134 // You were going to just dump your switches here, weren't you? Instead,
1130 // please put them in alphabetical order above, or in order inside the 1135 // please put them in alphabetical order above, or in order inside the
1131 // appropriate ifdef at the bottom. The order should match the header. 1136 // appropriate ifdef at the bottom. The order should match the header.
1132 // ----------------------------------------------------------------------------- 1137 // -----------------------------------------------------------------------------
1133 1138
1134 } // namespace switches 1139 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698