| Index: chrome/browser/sync/glue/bookmark_change_processor.cc
|
| ===================================================================
|
| --- chrome/browser/sync/glue/bookmark_change_processor.cc (revision 152993)
|
| +++ chrome/browser/sync/glue/bookmark_change_processor.cc (working copy)
|
| @@ -15,6 +15,7 @@
|
| #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"
|
| @@ -637,7 +638,7 @@
|
| HistoryService* history =
|
| HistoryServiceFactory::GetForProfile(profile, Profile::EXPLICIT_ACCESS);
|
| FaviconService* favicon_service =
|
| - profile->GetFaviconService(Profile::EXPLICIT_ACCESS);
|
| + FaviconServiceFactory::GetForProfile(profile, Profile::EXPLICIT_ACCESS);
|
|
|
| history->AddPageNoVisitForBookmark(bookmark_node->url(),
|
| bookmark_node->GetTitle());
|
|
|