| Index: chrome/browser/favicon/favicon_handler_unittest.cc
|
| diff --git a/chrome/browser/favicon/favicon_handler_unittest.cc b/chrome/browser/favicon/favicon_handler_unittest.cc
|
| index 8a3c4e52de2c3de17ab9b072f4701f4c60016986..2a7f6e680c922b396b04c318e4903b3395159ccb 100644
|
| --- a/chrome/browser/favicon/favicon_handler_unittest.cc
|
| +++ b/chrome/browser/favicon/favicon_handler_unittest.cc
|
| @@ -3,6 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| +#include "chrome/browser/favicon/chrome_favicon_client.h"
|
| #include "chrome/browser/favicon/favicon_handler.h"
|
| #include "chrome/browser/favicon/favicon_service.h"
|
| #include "chrome/browser/favicon/favicon_service_factory.h"
|
| @@ -1405,7 +1406,9 @@ TEST_F(FaviconHandlerTest, TestKeepDownloadedLargestFavicon) {
|
| }
|
|
|
| static KeyedService* BuildFaviconService(content::BrowserContext* profile) {
|
| - return new FaviconService(static_cast<Profile*>(profile));
|
| + FaviconClient* favicon_client =
|
| + new ChromeFaviconClient(static_cast<Profile*>(profile));
|
| + return new FaviconService(static_cast<Profile*>(profile), favicon_client);
|
| }
|
|
|
| static KeyedService* BuildHistoryService(content::BrowserContext* profile) {
|
|
|