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

Unified Diff: sync/internal_api/public/base/model_type_invalidation_map.cc

Issue 17034006: Add base namespace to more values in sync and elsewhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months 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: sync/internal_api/public/base/model_type_invalidation_map.cc
diff --git a/sync/internal_api/public/base/model_type_invalidation_map.cc b/sync/internal_api/public/base/model_type_invalidation_map.cc
index 65a125f51797c6d3eb1b4ac5a00b6768b4382ed4..7ced0ff61bfa6eb1af1e8068a0cc81fa63c23dba 100644
--- a/sync/internal_api/public/base/model_type_invalidation_map.cc
+++ b/sync/internal_api/public/base/model_type_invalidation_map.cc
@@ -35,16 +35,16 @@ ModelTypeSet ModelTypeInvalidationMapToSet(
std::string ModelTypeInvalidationMapToString(
const ModelTypeInvalidationMap& invalidation_map) {
- scoped_ptr<DictionaryValue> value(
+ scoped_ptr<base::DictionaryValue> value(
ModelTypeInvalidationMapToValue(invalidation_map));
std::string json;
base::JSONWriter::Write(value.get(), &json);
return json;
}
-DictionaryValue* ModelTypeInvalidationMapToValue(
+base::DictionaryValue* ModelTypeInvalidationMapToValue(
const ModelTypeInvalidationMap& invalidation_map) {
- DictionaryValue* value = new DictionaryValue();
+ base::DictionaryValue* value = new base::DictionaryValue();
for (ModelTypeInvalidationMap::const_iterator it = invalidation_map.begin();
it != invalidation_map.end(); ++it) {
std::string printable_payload;
« no previous file with comments | « sync/internal_api/public/base/invalidation.cc ('k') | sync/internal_api/public/base/model_type_invalidation_map_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698