| Index: components/history/core/browser/history_backend_notifier.h
|
| diff --git a/components/history/core/browser/history_backend_notifier.h b/components/history/core/browser/history_backend_notifier.h
|
| index a4253e23499a4cccc8af58200537ba99933993be..cd78b995bd9def6a0c9811e4bad675ceee14ce01 100644
|
| --- a/components/history/core/browser/history_backend_notifier.h
|
| +++ b/components/history/core/browser/history_backend_notifier.h
|
| @@ -21,8 +21,11 @@ class HistoryBackendNotifier {
|
| HistoryBackendNotifier() {}
|
| virtual ~HistoryBackendNotifier() {}
|
|
|
| - // Sends notification that favicon for |urls| have changed.
|
| - virtual void NotifyFaviconChanged(const std::set<GURL>& urls) = 0;
|
| + // Sends notification that the favicons for the given page URLs (e.g.
|
| + // http://www.google.com) and the given icon URLs (e.g.
|
| + // http://www.google.com/favicon.ico) have changed.
|
| + virtual void NotifyFaviconsChanged(const std::set<GURL>& page_urls,
|
| + const std::set<GURL>& icon_urls) = 0;
|
|
|
| // Sends notification that |transition| to |row| occurred at |visit_time|
|
| // following |redirects| (empty if there is no redirects).
|
|
|