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

Unified Diff: chrome/browser/bookmarks/bookmark_codec.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 years, 4 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: chrome/browser/bookmarks/bookmark_codec.cc
diff --git a/chrome/browser/bookmarks/bookmark_codec.cc b/chrome/browser/bookmarks/bookmark_codec.cc
index dd0a5766e8aab743cd6e07df43e02c73e36781f2..c5341cb1fc90a60e867dbb6ce4e5e28513065200 100644
--- a/chrome/browser/bookmarks/bookmark_codec.cc
+++ b/chrome/browser/bookmarks/bookmark_codec.cc
@@ -65,7 +65,7 @@ Value* BookmarkCodec::Encode(const BookmarkNode* bookmark_bar_node,
// We are going to store the computed checksum. So set stored checksum to be
// the same as computed checksum.
stored_checksum_ = computed_checksum_;
- main->Set(kChecksumKey, Value::CreateStringValue(computed_checksum_));
+ main->Set(kChecksumKey, base::StringValue::New(computed_checksum_));
main->Set(kRootsKey, roots);
return main;
}

Powered by Google App Engine
This is Rietveld 408576698