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

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: Add timeout on Win32 DHCP API. 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";
eroman 2011/04/21 05:22:48 nit: how about calling this kEnableDhcpWpad (to mi
Jói 2011/05/03 21:20:59 Done.
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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 1153
1149 // ----------------------------------------------------------------------------- 1154 // -----------------------------------------------------------------------------
1150 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1155 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1151 // 1156 //
1152 // You were going to just dump your switches here, weren't you? Instead, 1157 // You were going to just dump your switches here, weren't you? Instead,
1153 // please put them in alphabetical order above, or in order inside the 1158 // please put them in alphabetical order above, or in order inside the
1154 // appropriate ifdef at the bottom. The order should match the header. 1159 // appropriate ifdef at the bottom. The order should match the header.
1155 // ----------------------------------------------------------------------------- 1160 // -----------------------------------------------------------------------------
1156 1161
1157 } // namespace switches 1162 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698