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

Unified Diff: components/bookmarks/test/test_bookmark_client.cc

Issue 1841653003: Drop |languages| from {Format,Elide}Url* and IDNToUnicode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo in elide_url.cc Created 4 years, 8 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: components/bookmarks/test/test_bookmark_client.cc
diff --git a/components/bookmarks/test/test_bookmark_client.cc b/components/bookmarks/test/test_bookmark_client.cc
index a4fddc2f3d74d5c8aebc5d37702dadbefa926cf6..1b22ab25767ec5bed988c8e9b30c50f0d996d00b 100644
--- a/components/bookmarks/test/test_bookmark_client.cc
+++ b/components/bookmarks/test/test_bookmark_client.cc
@@ -30,8 +30,7 @@ scoped_ptr<BookmarkModel> TestBookmarkClient::CreateModelWithClient(
scoped_ptr<BookmarkClient> client) {
scoped_ptr<BookmarkModel> bookmark_model(
new BookmarkModel(std::move(client)));
- scoped_ptr<BookmarkLoadDetails> details =
- bookmark_model->CreateLoadDetails(std::string());
+ scoped_ptr<BookmarkLoadDetails> details = bookmark_model->CreateLoadDetails();
details->LoadExtraNodes();
bookmark_model->DoneLoading(std::move(details));
return bookmark_model;

Powered by Google App Engine
This is Rietveld 408576698