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

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

Issue 6651014: Applied the IconType. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: sync Created 9 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
Index: chrome/browser/bookmarks/bookmark_html_writer_unittest.cc
diff --git a/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc b/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc
index 88377f8185abc352ce3120a3cb28f25820671cdd..2cb48e2f2268a6e9a969f442a9c8989cf1ad11bb 100644
--- a/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc
+++ b/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc
@@ -197,8 +197,7 @@ TEST_F(BookmarkHTMLWriterTest, Test) {
profile.GetHistoryService(Profile::EXPLICIT_ACCESS)->AddPage(url1,
history::SOURCE_BROWSED);
profile.GetFaviconService(Profile::EXPLICIT_ACCESS)->SetFavicon(url1,
- url1_favicon,
- icon_data);
+ url1_favicon, icon_data, history::FAVICON);
message_loop.RunAllPending();
const BookmarkNode* f2 = model->AddGroup(f1, 1, f2_title);
model->AddURLWithCreationTime(f2, 0, url2_title, url2, t2);
@@ -221,8 +220,7 @@ TEST_F(BookmarkHTMLWriterTest, Test) {
// Clear favicon so that it would be read from file.
std::vector<unsigned char> empty_data;
profile.GetFaviconService(Profile::EXPLICIT_ACCESS)->SetFavicon(url1,
- url1_favicon,
- empty_data);
+ url1_favicon, empty_data, history::FAVICON);
message_loop.RunAllPending();
// Read the bookmarks back in.

Powered by Google App Engine
This is Rietveld 408576698