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

Unified Diff: components/policy/core/common/policy_service.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
« no previous file with comments | « components/policy/core/common/policy_service.h ('k') | components/policy/core/common/registry_dict_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/policy/core/common/policy_service.cc
diff --git a/components/policy/core/common/policy_service.cc b/components/policy/core/common/policy_service.cc
index fe4bb3037ce48cd4e1fbd21c344396ac8d755460..8ba3da206ed802e7bfd45e222f0f49277c394edf 100644
--- a/components/policy/core/common/policy_service.cc
+++ b/components/policy/core/common/policy_service.cc
@@ -32,8 +32,8 @@ void PolicyChangeRegistrar::OnPolicyUpdated(const PolicyNamespace& ns,
return;
for (CallbackMap::iterator it = callback_map_.begin();
it != callback_map_.end(); ++it) {
- const Value* prev = previous.GetValue(it->first);
- const Value* cur = current.GetValue(it->first);
+ const base::Value* prev = previous.GetValue(it->first);
+ const base::Value* cur = current.GetValue(it->first);
if (!base::Value::Equals(prev, cur))
it->second.Run(prev, cur);
}
« no previous file with comments | « components/policy/core/common/policy_service.h ('k') | components/policy/core/common/registry_dict_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698