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

Unified Diff: chrome/browser/about_flags.cc

Issue 2129543002: Registering field trial for a feature overridden in chrome://flags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index ae29a0e88a89bcc3aaa19d1a3dd0a59b0dcb98b8..0d3d2e6ff0127808a1c2d6b91559084bf74c1383 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -2058,9 +2058,10 @@ void ConvertFlagsToSwitches(flags_ui::FlagsStorage* flags_storage,
}
void RegisterAllFeatureVariationParameters(
- flags_ui::FlagsStorage* flags_storage) {
+ flags_ui::FlagsStorage* flags_storage,
+ base::FeatureList* feature_list) {
FlagsStateSingleton::GetFlagsState()->RegisterAllFeatureVariationParameters(
- flags_storage);
+ flags_storage, feature_list);
}
bool AreSwitchesIdenticalToCurrentCommandLine(

Powered by Google App Engine
This is Rietveld 408576698