| Index: chrome/browser/sync/sessions/notification_service_sessions_router.cc
|
| diff --git a/chrome/browser/sync/sessions/notification_service_sessions_router.cc b/chrome/browser/sync/sessions/notification_service_sessions_router.cc
|
| index fd27c12d5f8003ae420e5272bdcdec30cdf0ce3f..fa264b30c625a8ac2e7094c5186e0e03b9675b7c 100644
|
| --- a/chrome/browser/sync/sessions/notification_service_sessions_router.cc
|
| +++ b/chrome/browser/sync/sessions/notification_service_sessions_router.cc
|
| @@ -62,7 +62,7 @@ NotificationServiceSessionsRouter::NotificationServiceSessionsRouter(
|
| ServiceAccessType::EXPLICIT_ACCESS);
|
| if (history_service) {
|
| favicon_changed_subscription_ = history_service->AddFaviconChangedCallback(
|
| - base::Bind(&NotificationServiceSessionsRouter::OnFaviconChanged,
|
| + base::Bind(&NotificationServiceSessionsRouter::OnFaviconsChanged,
|
| base::Unretained(this)));
|
| }
|
| #if defined(ENABLE_SUPERVISED_USERS)
|
| @@ -155,10 +155,11 @@ void NotificationServiceSessionsRouter::OnNavigationBlocked(
|
| handler_->OnLocalTabModified(tab);
|
| }
|
|
|
| -void NotificationServiceSessionsRouter::OnFaviconChanged(
|
| - const std::set<GURL>& changed_favicons) {
|
| +void NotificationServiceSessionsRouter::OnFaviconsChanged(
|
| + const std::vector<GURL>& page_urls,
|
| + const std::vector<GURL>& icon_urls) {
|
| if (handler_)
|
| - handler_->OnFaviconPageUrlsUpdated(changed_favicons);
|
| + handler_->OnFaviconsChanged(page_urls, icon_urls);
|
| }
|
|
|
| void NotificationServiceSessionsRouter::StartRoutingTo(
|
|
|