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

Unified Diff: chrome/browser/flag_descriptions.cc

Issue 2850003002: Add flag to override Effective Connection Type (Closed)
Patch Set: ryansturm nits Created 3 years, 8 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/browser/flag_descriptions.cc
diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descriptions.cc
index fb54c3bc46437b3f62f8f193d988353c9d2fd1aa..367771c40ea9aec0076614ab1facd2128dbb8117 100644
--- a/chrome/browser/flag_descriptions.cc
+++ b/chrome/browser/flag_descriptions.cc
@@ -3058,6 +3058,20 @@ const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
"the current page is provided as the first suggestion without a title. "
"Enabling this flag causes the title to be displayed.";
+const char kForceEffectiveConnectionTypeName[] =
+ "Override effective connection type";
+
+const char kForceEffectiveConnectionTypeDescription[] =
+ "Overrides the effective connection type of the current connection "
+ "returned by the network quality estimator.";
+
+const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
+const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
+const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
+const char kEffectiveConnectionType2GDescription[] = "2G";
+const char kEffectiveConnectionType3GDescription[] = "3G";
+const char kEffectiveConnectionType4GDescription[] = "4G";
+
const char kEnableHeapProfilingName[] = "Heap profiling";
const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";

Powered by Google App Engine
This is Rietveld 408576698