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

Unified Diff: content/public/common/content_switches.cc

Issue 11053007: Make content shell support some testing flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index 9e3e3a83a76ecd6ed4c2d3872d52dfd085489795..865567666e83d88932c39f1e81d9f918b64d4fe9 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -435,6 +435,9 @@ const char kGpuVendorID[] = "gpu-vendor-id";
// to run as a guest renderer instead of a regular renderer.
const char kGuestRenderer[] = "guest-renderer";
+// These mappings only apply to the host resolver.
+const char kHostResolverRules[] = "host-resolver-rules";
+
// Ignores GPU blacklist.
const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist";
@@ -587,6 +590,10 @@ const char kTapDownDeferralTimeMs[] = "tap-down-deferral-time";
// Runs the security test for the renderer sandbox.
const char kTestSandbox[] = "test-sandbox";
+// Allows for forcing socket connections to http/https to use fixed ports.
+const char kTestingFixedHttpPort[] = "testing-fixed-http-port";
+const char kTestingFixedHttpsPort[] = "testing-fixed-https-port";
+
// Causes TRACE_EVENT flags to be recorded from startup. Optionally, can
// specify the specific trace categories to include (e.g.
// --trace-startup=base,net) otherwise, all events are recorded. Setting this

Powered by Google App Engine
This is Rietveld 408576698