| Index: chrome/browser/sync/glue/bookmark_change_processor.cc
|
| ===================================================================
|
| --- chrome/browser/sync/glue/bookmark_change_processor.cc (revision 152958)
|
| +++ chrome/browser/sync/glue/bookmark_change_processor.cc (working copy)
|
| @@ -15,7 +15,6 @@
|
| #include "chrome/browser/bookmarks/bookmark_model_factory.h"
|
| #include "chrome/browser/bookmarks/bookmark_utils.h"
|
| #include "chrome/browser/favicon/favicon_service.h"
|
| -#include "chrome/browser/favicon/favicon_service_factory.h"
|
| #include "chrome/browser/history/history_service_factory.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/sync/profile_sync_service.h"
|
| @@ -638,7 +637,7 @@
|
| HistoryService* history =
|
| HistoryServiceFactory::GetForProfile(profile, Profile::EXPLICIT_ACCESS);
|
| FaviconService* favicon_service =
|
| - FaviconServiceFactory::GetForProfile(profile, Profile::EXPLICIT_ACCESS);
|
| + profile->GetFaviconService(Profile::EXPLICIT_ACCESS);
|
|
|
| history->AddPageNoVisitForBookmark(bookmark_node->url(),
|
| bookmark_node->GetTitle());
|
|
|