| Index: chrome/browser/notifications/message_center_settings_controller.cc
|
| diff --git a/chrome/browser/notifications/message_center_settings_controller.cc b/chrome/browser/notifications/message_center_settings_controller.cc
|
| index 5fd5cdf53f6378a016cda00498a45998c1d5d9ce..3259183a47d21493445e8545eb167dbfc28d05ef 100644
|
| --- a/chrome/browser/notifications/message_center_settings_controller.cc
|
| +++ b/chrome/browser/notifications/message_center_settings_controller.cc
|
| @@ -288,17 +288,18 @@ void MessageCenterSettingsController::GetNotifierList(
|
| name,
|
| notification_service->IsNotifierEnabled(notifier_id)));
|
| patterns_[name] = iter->primary_pattern;
|
| - FaviconService::FaviconForURLParams favicon_params(
|
| + FaviconService::FaviconForPageURLParams favicon_params(
|
| url,
|
| favicon_base::FAVICON | favicon_base::TOUCH_ICON,
|
| message_center::kSettingsIconSize);
|
| // Note that favicon service obtains the favicon from history. This means
|
| // that it will fail to obtain the image if there are no history data for
|
| // that URL.
|
| - favicon_service->GetFaviconImageForURL(
|
| + favicon_service->GetFaviconImageForPageURL(
|
| favicon_params,
|
| base::Bind(&MessageCenterSettingsController::OnFaviconLoaded,
|
| - base::Unretained(this), url),
|
| + base::Unretained(this),
|
| + url),
|
| favicon_tracker_.get());
|
| }
|
|
|
|
|