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

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

Issue 3152034: Remove wstrings in bookmarks, part 5. (Closed)
Patch Set: yet moar Created 10 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
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_index_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/bookmarks/bookmark_codec_unittest.cc
diff --git a/chrome/browser/bookmarks/bookmark_codec_unittest.cc b/chrome/browser/bookmarks/bookmark_codec_unittest.cc
index 2fec35624c450192c02e1c1de2a941a2a4824b10..6f681fb8e13fbae1e510f4495200050f78b5c66a 100644
--- a/chrome/browser/bookmarks/bookmark_codec_unittest.cc
+++ b/chrome/browser/bookmarks/bookmark_codec_unittest.cc
@@ -246,8 +246,10 @@ TEST_F(BookmarkCodecTest, ChecksumManualEditIDsTest) {
// add a few extra nodes to bookmark model and make sure IDs are still uniuqe.
const BookmarkNode* bb_node = decoded_model->GetBookmarkBarNode();
- decoded_model->AddURL(bb_node, 0, L"new url1", GURL(L"http://newurl1.com"));
- decoded_model->AddURL(bb_node, 0, L"new url2", GURL(L"http://newurl2.com"));
+ decoded_model->AddURL(bb_node, 0, ASCIIToUTF16("new url1"),
+ GURL("http://newurl1.com"));
+ decoded_model->AddURL(bb_node, 0, ASCIIToUTF16("new url2"),
+ GURL("http://newurl2.com"));
ExpectIDsUnique(decoded_model.get());
}
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_index_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698