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

Unified Diff: chrome/browser/chromeos/settings/owner_flags_storage.cc

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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/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 6e04ab0519281be801ad48ebe6c46782f50117a1..e3af783ed9e7183fde87511fa62f477434771b7c 100644
--- a/chrome/browser/chromeos/settings/owner_flags_storage.cc
+++ b/chrome/browser/chromeos/settings/owner_flags_storage.cc
@@ -22,14 +22,14 @@ OwnerFlagsStorage::OwnerFlagsStorage(PrefService *prefs,
cros_settings_(cros_settings) {
// Make this code more unit test friendly.
if (g_browser_process->local_state()) {
- const ListValue* legacy_experiments =
+ const base::ListValue* legacy_experiments =
g_browser_process->local_state()->GetList(
prefs::kEnabledLabsExperiments);
if (!legacy_experiments->empty()) {
// If there are any flags set in local state migrate them to the owner's
// prefs and device settings.
std::set<std::string> flags;
- for (ListValue::const_iterator it = legacy_experiments->begin();
+ for (base::ListValue::const_iterator it = legacy_experiments->begin();
it != legacy_experiments->end(); ++it) {
std::string experiment_name;
if (!(*it)->GetAsString(&experiment_name)) {

Powered by Google App Engine
This is Rietveld 408576698