Index: chrome/common/chrome_switches.cc |
=================================================================== |
--- chrome/common/chrome_switches.cc (revision 30486) |
+++ chrome/common/chrome_switches.cc (working copy) |
@@ -562,6 +562,16 @@ |
// This is a temporary testing flag. |
const char kUseFlip[] = "use-flip"; |
+// Force all requests to go to this server. This commandline is provided |
+// for testing purposes only, and will likely be removed soon. It can also |
+// hurt startup performance as it does a synchronous name resolution on the |
+// UI thread. The port is not optional. |
+// The host resolution using this scheme is done exactly once at startup. |
+// From that point on, it is completely a static configuration. |
+// TODO(mbelshe): Remove this flag when testing is complete. |
+// --testing-fixed-server=myserver:1000 |
+const char kFixedServer[] = "testing-fixed-server"; |
+ |
// Use the low fragmentation heap for the CRT. |
const char kUseLowFragHeapCrt[] = "use-lf-heap"; |