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

Unified Diff: components/policy/core/browser/configuration_policy_pref_store.cc

Issue 108603005: Update uses of Value in chromeos/, cloud_print/, components/, content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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: components/policy/core/browser/configuration_policy_pref_store.cc
diff --git a/components/policy/core/browser/configuration_policy_pref_store.cc b/components/policy/core/browser/configuration_policy_pref_store.cc
index b47639ff07732725b5a9a04f7b6b1440705abd3a..60670fb825d66ce60992dfd7b12b1b93e78807b4 100644
--- a/components/policy/core/browser/configuration_policy_pref_store.cc
+++ b/components/policy/core/browser/configuration_policy_pref_store.cc
@@ -63,8 +63,8 @@ bool ConfigurationPolicyPrefStore::IsInitializationComplete() const {
}
bool ConfigurationPolicyPrefStore::GetValue(const std::string& key,
- const Value** value) const {
- const Value* stored_value = NULL;
+ const base::Value** value) const {
+ const base::Value* stored_value = NULL;
if (!prefs_.get() || !prefs_->GetValue(key, &stored_value))
return false;

Powered by Google App Engine
This is Rietveld 408576698