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

Unified Diff: chrome/browser/sync/glue/generic_change_processor.cc

Issue 120983002: Update some uses of UTF conversions in chrome/browser 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: chrome/browser/sync/glue/generic_change_processor.cc
diff --git a/chrome/browser/sync/glue/generic_change_processor.cc b/chrome/browser/sync/glue/generic_change_processor.cc
index 6d6b6aad8cbd2fa275e505edd60057a00c2c5de0..91931922c6f79c58907eefdbb781193f587b2c48 100644
--- a/chrome/browser/sync/glue/generic_change_processor.cc
+++ b/chrome/browser/sync/glue/generic_change_processor.cc
@@ -411,7 +411,7 @@ syncer::SyncError GenericChangeProcessor::ProcessSyncChanges(
}
}
}
- sync_node.SetTitle(UTF8ToWide(change.sync_data().GetTitle()));
+ sync_node.SetTitle(base::UTF8ToWide(change.sync_data().GetTitle()));
SetNodeSpecifics(change.sync_data().GetSpecifics(), &sync_node);
if (merge_result_.get()) {
merge_result_->set_num_items_added(merge_result_->num_items_added() +
@@ -504,7 +504,7 @@ syncer::SyncError GenericChangeProcessor::ProcessSyncChanges(
}
}
- sync_node.SetTitle(UTF8ToWide(change.sync_data().GetTitle()));
+ sync_node.SetTitle(base::UTF8ToWide(change.sync_data().GetTitle()));
SetNodeSpecifics(change.sync_data().GetSpecifics(), &sync_node);
if (merge_result_.get()) {
merge_result_->set_num_items_modified(
« no previous file with comments | « chrome/browser/sync/glue/bookmark_model_associator.cc ('k') | chrome/browser/sync/glue/password_model_associator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698