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

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: Ready for test-drive. 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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 const char kDnsServer[] = "dns-server"; 412 const char kDnsServer[] = "dns-server";
413 413
414 // Replaces the download shelf with a new experimental UI. 414 // Replaces the download shelf with a new experimental UI.
415 const char kDownloadsNewUI[] = "downloads-new-ui"; 415 const char kDownloadsNewUI[] = "downloads-new-ui";
416 416
417 // Dump any accumualted histograms to the log when browser terminates (requires 417 // 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 418 // logging to be enabled to really do anything). Used by developers and test
419 // scripts. 419 // scripts.
420 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; 420 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit";
421 421
422 // Enables the experimental asynchronous DNS client.
423 const char kEnableAsyncDns[] = "enable-async-dns";
cbentzel 2012/02/10 19:51:08 Nit: Should be ordered after EnableAeroPeekTabs.
424
422 // Enables AeroPeek for each tab. (This switch only works on Windows 7). 425 // Enables AeroPeek for each tab. (This switch only works on Windows 7).
423 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; 426 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs";
424 427
425 // Enables the inclusion of non-standard ports when generating the Kerberos SPN 428 // Enables the inclusion of non-standard ports when generating the Kerberos SPN
426 // in response to a Negotiate challenge. See 429 // in response to a Negotiate challenge. See
427 // HttpAuthHandlerNegotiate::CreateSPN for more background. 430 // HttpAuthHandlerNegotiate::CreateSPN for more background.
428 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 431 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
429 432
430 // With this flag set, Chrome will occasionally prompt the user to volunteer 433 // 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 434 // Autofill usage data beyond what is collected by default. This is data that
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 1292
1290 // ----------------------------------------------------------------------------- 1293 // -----------------------------------------------------------------------------
1291 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1294 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1292 // 1295 //
1293 // You were going to just dump your switches here, weren't you? Instead, please 1296 // You were going to just dump your switches here, weren't you? Instead, please
1294 // put them in alphabetical order above, or in order inside the appropriate 1297 // put them in alphabetical order above, or in order inside the appropriate
1295 // ifdef at the bottom. The order should match the header. 1298 // ifdef at the bottom. The order should match the header.
1296 // ----------------------------------------------------------------------------- 1299 // -----------------------------------------------------------------------------
1297 1300
1298 } // namespace switches 1301 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698