| Index: chrome/browser/favicon/favicon_service.cc
|
| diff --git a/chrome/browser/favicon/favicon_service.cc b/chrome/browser/favicon/favicon_service.cc
|
| index e2374e7cf2342e6e630b511c10cd98c4859092ae..0fc2cf4867337e7518bf8bf5e07bd9e5c93b9851 100644
|
| --- a/chrome/browser/favicon/favicon_service.cc
|
| +++ b/chrome/browser/favicon/favicon_service.cc
|
| @@ -64,10 +64,12 @@ base::CancelableTaskTracker::TaskId GetFaviconForChromeURL(
|
|
|
| } // namespace
|
|
|
| -FaviconService::FaviconService(Profile* profile)
|
| - : history_service_(HistoryServiceFactory::GetForProfile(
|
| - profile, Profile::EXPLICIT_ACCESS)),
|
| - profile_(profile) {
|
| +FaviconService::FaviconService(Profile* profile, FaviconClient* favicon_client)
|
| + : history_service_(
|
| + HistoryServiceFactory::GetForProfile(profile,
|
| + Profile::EXPLICIT_ACCESS)),
|
| + profile_(profile),
|
| + favicon_client_(favicon_client) {
|
| }
|
|
|
| // static
|
|
|