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

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

Powered by Google App Engine
This is Rietveld 408576698