| Index: chrome/browser/about_flags.cc
|
| diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
|
| index bdd12c64d47f30cfee2c71f1bf86c462cb9f925d..c247b45e1218723501cac192edca8f1e78820fe2 100644
|
| --- a/chrome/browser/about_flags.cc
|
| +++ b/chrome/browser/about_flags.cc
|
| @@ -2184,8 +2184,9 @@ void ResetAllFlags(flags_ui::FlagsStorage* flags_storage) {
|
| }
|
|
|
| void RecordUMAStatistics(flags_ui::FlagsStorage* flags_storage) {
|
| - std::set<std::string> flags = flags_storage->GetFlags();
|
| - ReportAboutFlagsHistogram("Launch.FlagsAtStartup", flags);
|
| + const std::set<std::string> switches =
|
| + FlagsStateSingleton::GetFlagsState()->GetSwitchesFromFlags(flags_storage);
|
| + ReportAboutFlagsHistogram("Launch.FlagsAtStartup", switches);
|
| }
|
|
|
| base::HistogramBase::Sample GetSwitchUMAId(const std::string& switch_name) {
|
|
|