Index: chrome/browser/chromeos/settings/owner_flags_storage.cc |
diff --git a/chrome/browser/chromeos/settings/owner_flags_storage.cc b/chrome/browser/chromeos/settings/owner_flags_storage.cc |
index a2312648e1968d9ae68697cfdadfb4f66f261431..25d37a89c96e20b881d980089220286e8c724ef1 100644 |
--- a/chrome/browser/chromeos/settings/owner_flags_storage.cc |
+++ b/chrome/browser/chromeos/settings/owner_flags_storage.cc |
@@ -57,7 +57,7 @@ bool OwnerFlagsStorage::SetFlags(const std::set<std::string>& flags) { |
base::CommandLine command_line(base::CommandLine::NO_PROGRAM); |
::about_flags::ConvertFlagsToSwitches(this, &command_line, |
- ::about_flags::kNoSentinels); |
+ ::flags_ui::kNoSentinels); |
Alexei Svitkine (slow)
2015/11/16 21:52:54
Nit: No need for leading ::, since there's no long
sdefresne
2015/11/17 16:28:56
Done.
|
base::CommandLine::StringVector switches = command_line.argv(); |
for (base::CommandLine::StringVector::const_iterator it = |
switches.begin() + 1; |