| Index: chrome/browser/bookmarks/bookmark_html_writer.cc
|
| diff --git a/chrome/browser/bookmarks/bookmark_html_writer.cc b/chrome/browser/bookmarks/bookmark_html_writer.cc
|
| index 1b000b28de019d489396211758debbc7310da8fd..0e16b80e8cfb09b8037851ce7da85f3dfcbf91fd 100644
|
| --- a/chrome/browser/bookmarks/bookmark_html_writer.cc
|
| +++ b/chrome/browser/bookmarks/bookmark_html_writer.cc
|
| @@ -457,8 +457,8 @@ bool BookmarkFaviconFetcher::FetchNextFavicon() {
|
| if (favicons_map_->end() == iter) {
|
| FaviconService* favicon_service = FaviconServiceFactory::GetForProfile(
|
| profile_, Profile::EXPLICIT_ACCESS);
|
| - favicon_service->GetRawFaviconForURL(
|
| - FaviconService::FaviconForURLParams(
|
| + favicon_service->GetRawFaviconForPageURL(
|
| + FaviconService::FaviconForPageURLParams(
|
| GURL(url), favicon_base::FAVICON, gfx::kFaviconSize),
|
| ui::SCALE_FACTOR_100P,
|
| base::Bind(&BookmarkFaviconFetcher::OnFaviconDataAvailable,
|
| @@ -473,7 +473,7 @@ bool BookmarkFaviconFetcher::FetchNextFavicon() {
|
| }
|
|
|
| void BookmarkFaviconFetcher::OnFaviconDataAvailable(
|
| - const favicon_base::FaviconBitmapResult& bitmap_result) {
|
| + const favicon_base::FaviconRawBitmapResult& bitmap_result) {
|
| GURL url;
|
| if (!bookmark_urls_.empty()) {
|
| url = GURL(bookmark_urls_.front());
|
|
|