| Index: chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc
|
| diff --git a/chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc b/chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc
|
| index 05d8d35298bb7a479b8840bc52980b36dac5546b..8c9b3ea5abc2a33cd491ae845f28e2b04bfcf555 100644
|
| --- a/chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc
|
| +++ b/chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc
|
| @@ -355,12 +355,13 @@ void BookmarksHandler::HandleCreateHomeScreenBookmarkShortcut(
|
| FaviconService* favicon_service = FaviconServiceFactory::GetForProfile(
|
| profile, Profile::EXPLICIT_ACCESS);
|
| FaviconService::Handle handle = favicon_service->GetRawFaviconForURL(
|
| - profile,
|
| - node->url(),
|
| - history::FAVICON | history::TOUCH_ICON,
|
| - gfx::kFaviconSize,
|
| + FaviconService::FaviconForURLParams(
|
| + profile,
|
| + node->url(),
|
| + history::FAVICON | history::TOUCH_ICON,
|
| + gfx::kFaviconSize,
|
| + &cancelable_consumer_),
|
| ui::SCALE_FACTOR_100P,
|
| - &cancelable_consumer_,
|
| base::Bind(&BookmarksHandler::OnShortcutFaviconDataAvailable,
|
| base::Unretained(this)));
|
| cancelable_consumer_.SetClientData(favicon_service, handle, node);
|
|
|