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

Unified Diff: chrome/browser/flag_descriptions.h

Issue 2850003002: Add flag to override Effective Connection Type (Closed)
Patch Set: ps 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.h
diff --git a/chrome/browser/flag_descriptions.h b/chrome/browser/flag_descriptions.h
index ce8ff8b7d7211c45bddd704d5a8674459092874c..149598ca71e8234c1a6fd3ceae0e7ba3dc82c205 100644
--- a/chrome/browser/flag_descriptions.h
+++ b/chrome/browser/flag_descriptions.h
@@ -3316,6 +3316,23 @@ extern const char kOmniboxDisplayTitleForCurrentUrlName[];
// for current URL.
extern const char kOmniboxDisplayTitleForCurrentUrlDescription[];
+// Name of the flag that forces Network Quality Estimator (NQE) to always
+// return the specified effective connection type.
+extern const char kForceEffectiveConnectionTypeName[];
+
+// Description of the flag that forces Network Quality Estimator (NQE) to always
+// return the specified effective connection type.
+extern const char kForceEffectiveConnectionTypeDescription[];
+
+// Description of the various effective connection type choices that can be
+// set using kForceEffectiveConnectionTypeName flag.
+extern const char kEffectiveConnectionTypeUnknownDescription[];
+extern const char kEffectiveConnectionTypeOfflineDescription[];
+extern const char kEffectiveConnectionTypeSlow2GDescription[];
+extern const char kEffectiveConnectionType2GDescription[];
+extern const char kEffectiveConnectionType3GDescription[];
+extern const char kEffectiveConnectionType4GDescription[];
+
} // namespace flag_descriptions
#endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_

Powered by Google App Engine
This is Rietveld 408576698