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

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 memory leaks in unit test. 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 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 // Enables compositing to texture instead of display. 395 // Enables compositing to texture instead of display.
396 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; 396 const char kEnableCompositeToTexture[] = "enable-composite-to-texture";
397 397
398 // Enables establishing a backup TCP connection if a specified timeout is 398 // Enables establishing a backup TCP connection if a specified timeout is
399 // exceeded. 399 // exceeded.
400 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; 400 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs";
401 401
402 // Enables web developers to create apps for Chrome without using crx packages. 402 // Enables web developers to create apps for Chrome without using crx packages.
403 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; 403 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps";
404 404
405 // Enables retrieval of PAC URLs from DHCP as per the WPAD standard. Note
406 // that this feature is not supported on all platforms, and using the flag
407 // is a no-op on such platforms.
408 const char kEnableDhcpWpad[] = "enable-dhcp-wpad";
409
405 // Enable DNS side checking of certificates. Still experimental, should only 410 // Enable DNS side checking of certificates. Still experimental, should only
406 // be used by developers at the current time. 411 // be used by developers at the current time.
407 const char kEnableDNSCertProvenanceChecking[] = 412 const char kEnableDNSCertProvenanceChecking[] =
408 "enable-dns-cert-provenance-checking"; 413 "enable-dns-cert-provenance-checking";
409 414
410 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; 415 const char kEnableDNSSECCerts[] = "enable-dnssec-certs";
411 416
412 // Enables app manifest features that are in development. 417 // Enables app manifest features that are in development.
413 const char kEnableExperimentalAppManifests[] = 418 const char kEnableExperimentalAppManifests[] =
414 "enable-experimental-app-manifests"; 419 "enable-experimental-app-manifests";
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 1178
1174 // ----------------------------------------------------------------------------- 1179 // -----------------------------------------------------------------------------
1175 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1180 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1176 // 1181 //
1177 // You were going to just dump your switches here, weren't you? Instead, 1182 // You were going to just dump your switches here, weren't you? Instead,
1178 // please put them in alphabetical order above, or in order inside the 1183 // please put them in alphabetical order above, or in order inside the
1179 // appropriate ifdef at the bottom. The order should match the header. 1184 // appropriate ifdef at the bottom. The order should match the header.
1180 // ----------------------------------------------------------------------------- 1185 // -----------------------------------------------------------------------------
1181 1186
1182 } // namespace switches 1187 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698