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

Unified Diff: sync/syncable/entry_kernel.cc

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (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/syncable/entry_kernel.cc
diff --git a/sync/syncable/entry_kernel.cc b/sync/syncable/entry_kernel.cc
index b65eaa213df22d15bb8520cebfc464d1bd01cd49..d872695243b054a8332eb370cad74d048f04d2ec 100644
--- a/sync/syncable/entry_kernel.cc
+++ b/sync/syncable/entry_kernel.cc
@@ -125,8 +125,8 @@ base::StringValue* StringToValue(const std::string& str) {
return new base::StringValue(str);
}
-StringValue* UniquePositionToValue(const UniquePosition& pos) {
- return Value::CreateStringValue(pos.ToDebugString());
+base::StringValue* UniquePositionToValue(const UniquePosition& pos) {
+ return base::Value::CreateStringValue(pos.ToDebugString());
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698