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

Unified Diff: chrome/common/chrome_switches.cc

Issue 3191019: A/B experiment for re-establishing TCP connections (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_switches.cc
===================================================================
--- chrome/common/chrome_switches.cc (revision 57274)
+++ chrome/common/chrome_switches.cc (working copy)
@@ -145,6 +145,10 @@
// Disable support for cached byte-ranges.
const char kDisableByteRangeSupport[] = "disable-byte-range-support";
+// Disables establishing a backup TCP connection if a specified timeout is
+// exceeded.
+const char kDisableConnectBackupJobs[] = "disable-connect-backup-jobs";
+
// Disable requests that webkit labels TargetIsPrefetch. As of
// writing only <link rel=prefetch...> but also eventually
// Link: headers.
@@ -268,7 +272,7 @@
const char kDisableSyncPreferences[] = "disable-sync-preferences";
// Disable syncing of sessions.
-const char kDisableSyncSessions[] = "disable-sync-sessions";
+const char kDisableSyncSessions[] = "disable-sync-sessions";
// Disable syncing of themes.
const char kDisableSyncThemes[] = "disable-sync-themes";
@@ -316,7 +320,7 @@
const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit";
// Enable displaying net log events on the command line.
-extern const char kLogNetLog[] = "log-net-log";
+extern const char kLogNetLog[] = "log-net-log";
// Enable gpu-accelerated compositing.
const char kEnableAcceleratedCompositing[] = "enable-accelerated-compositing";
@@ -337,7 +341,7 @@
// This applies only when the process type is "service". Enables the
// Chromoting Host Process within the service process.
-const char kEnableRemoting[] = "enable-remoting";
+const char kEnableRemoting[] = "enable-remoting";
// Enable click-to-play for blocked plugins.
const char kEnableClickToPlay[] = "enable-click-to-play";
@@ -349,6 +353,10 @@
// Enables the Cloud Print dialog hosting code.
const char kEnableCloudPrint[] = "enable-cloud-print";
+// Enables establishing a backup TCP connection if a specified timeout is
+// exceeded.
+const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs";
+
// Enable requests that webkit labels TargetIsPrefetch. As of
// writing only <link rel=prefetch...> but also eventually
// Link: headers.
@@ -468,7 +476,7 @@
const char kEnableSyncPreferences[] = "enable-sync-preferences";
// Enable syncing browser sessions.
-const char kEnableSyncSessions[] = "enable-sync-sessions";
+const char kEnableSyncSessions[] = "enable-sync-sessions";
// Enable syncing browser themes.
const char kEnableSyncThemes[] = "enable-sync-themes";
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698