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

Unified Diff: components/sync/syncable/syncable_id.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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
« no previous file with comments | « components/sync/syncable/syncable_id.h ('k') | components/sync/syncable/write_transaction_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/syncable/syncable_id.cc
diff --git a/components/sync/syncable/syncable_id.cc b/components/sync/syncable/syncable_id.cc
index 420ad3877bb990969d533c32311f9e8f9d610b52..24d8dfdbde821416605a2006f3523e292456550e 100644
--- a/components/sync/syncable/syncable_id.cc
+++ b/components/sync/syncable/syncable_id.cc
@@ -18,8 +18,8 @@ ostream& operator<<(ostream& out, const Id& id) {
return out;
}
-base::StringValue* Id::ToValue() const {
- return new base::StringValue(s_);
+base::Value* Id::ToValue() const {
+ return new base::Value(s_);
}
string Id::GetServerId() const {
« no previous file with comments | « components/sync/syncable/syncable_id.h ('k') | components/sync/syncable/write_transaction_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698