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

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

Issue 9369045: [net] HostResolverImpl + DnsTransaction + DnsConfigService = Asynchronous DNS ready for experiments. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ClientSocketFactory lifetime. Move ScopedAllowIO to StartWatch. Added DnsTask logging. Created 8 years, 10 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 const char kDiskCacheDir[] = "disk-cache-dir"; 401 const char kDiskCacheDir[] = "disk-cache-dir";
402 402
403 // Forces the maximum disk space to be used by the disk cache, in bytes. 403 // Forces the maximum disk space to be used by the disk cache, in bytes.
404 const char kDiskCacheSize[] = "disk-cache-size"; 404 const char kDiskCacheSize[] = "disk-cache-size";
405 405
406 const char kDnsLogDetails[] = "dns-log-details"; 406 const char kDnsLogDetails[] = "dns-log-details";
407 407
408 // Disables prefetching of DNS information. 408 // Disables prefetching of DNS information.
409 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; 409 const char kDnsPrefetchDisable[] = "dns-prefetch-disable";
410 410
411 // Use the specified DNS server for raw DNS resolution.
412 const char kDnsServer[] = "dns-server";
413
414 // Replaces the download shelf with a new experimental UI. 411 // Replaces the download shelf with a new experimental UI.
415 const char kDownloadsNewUI[] = "downloads-new-ui"; 412 const char kDownloadsNewUI[] = "downloads-new-ui";
416 413
417 // Dump any accumualted histograms to the log when browser terminates (requires 414 // Dump any accumualted histograms to the log when browser terminates (requires
418 // logging to be enabled to really do anything). Used by developers and test 415 // logging to be enabled to really do anything). Used by developers and test
419 // scripts. 416 // scripts.
420 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; 417 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit";
421 418
422 // Enables AeroPeek for each tab. (This switch only works on Windows 7). 419 // Enables AeroPeek for each tab. (This switch only works on Windows 7).
423 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; 420 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs";
424 421
422 // Enables the experimental asynchronous DNS client.
423 const char kEnableAsyncDns[] = "enable-async-dns";
424
425 // Enables the inclusion of non-standard ports when generating the Kerberos SPN 425 // Enables the inclusion of non-standard ports when generating the Kerberos SPN
426 // in response to a Negotiate challenge. See 426 // in response to a Negotiate challenge. See
427 // HttpAuthHandlerNegotiate::CreateSPN for more background. 427 // HttpAuthHandlerNegotiate::CreateSPN for more background.
428 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 428 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
429 429
430 // With this flag set, Chrome will occasionally prompt the user to volunteer 430 // With this flag set, Chrome will occasionally prompt the user to volunteer
431 // Autofill usage data beyond what is collected by default. This is data that 431 // Autofill usage data beyond what is collected by default. This is data that
432 // we expect to be helpful for debugging, but that we do not want to send up 432 // we expect to be helpful for debugging, but that we do not want to send up
433 // automatically due to privacy concerns. 433 // automatically due to privacy concerns.
434 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; 434 const char kEnableAutofillFeedback[] = "enable-autofill-feedback";
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 1293
1294 // ----------------------------------------------------------------------------- 1294 // -----------------------------------------------------------------------------
1295 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1295 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1296 // 1296 //
1297 // You were going to just dump your switches here, weren't you? Instead, please 1297 // You were going to just dump your switches here, weren't you? Instead, please
1298 // put them in alphabetical order above, or in order inside the appropriate 1298 // put them in alphabetical order above, or in order inside the appropriate
1299 // ifdef at the bottom. The order should match the header. 1299 // ifdef at the bottom. The order should match the header.
1300 // ----------------------------------------------------------------------------- 1300 // -----------------------------------------------------------------------------
1301 1301
1302 } // namespace switches 1302 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698