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

Unified Diff: chrome/common/chrome_switches.cc

Issue 7011044: Add a command line option to turn off retry attempts to resolve host (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_switches.cc
===================================================================
--- chrome/common/chrome_switches.cc (revision 85450)
+++ chrome/common/chrome_switches.cc (working copy)
@@ -601,9 +601,13 @@
// proxy connection, and the endpoint host in a SOCKS proxy connection).
const char kHostRules[] = "host-rules";
-// The maximum number of concurrent host resolve requests (i.e. DNS) to allow.
+// The maximum number of concurrent host resolve requests (i.e. DNS) to allow
+// (not counting potential duplicate attempts).
eroman 2011/05/16 23:26:08 please elaborate this more, mention that the --hos
ramant (doing other things) 2011/05/17 18:46:25 Done.
const char kHostResolverParallelism[] = "host-resolver-parallelism";
+// The maximum number of retry attempts to resolve the host.
+const char kHostResolverRetryAttempts[] = "host-resolver-retry-attempts";
+
// These mappings only apply to the host resolver.
const char kHostResolverRules[] = "host-resolver-rules";

Powered by Google App Engine
This is Rietveld 408576698