| Index: chrome/browser/ntp_snippets/content_suggestions_service_factory.cc
|
| diff --git a/chrome/browser/ntp_snippets/content_suggestions_service_factory.cc b/chrome/browser/ntp_snippets/content_suggestions_service_factory.cc
|
| index f9a9371616a26ece8a5c4d277ee4eb4489e9d349..9bcb5826061146eaf9f92f0db52b61af7fbef2c3 100644
|
| --- a/chrome/browser/ntp_snippets/content_suggestions_service_factory.cc
|
| +++ b/chrome/browser/ntp_snippets/content_suggestions_service_factory.cc
|
| @@ -16,6 +16,9 @@
|
| #include "chrome/browser/bookmarks/bookmark_model_factory.h"
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/favicon/large_icon_service_factory.h"
|
| +#include "chrome/browser/gcm/gcm_profile_service_factory.h"
|
| +#include "chrome/browser/gcm/instance_id/instance_id_profile_service.h"
|
| +#include "chrome/browser/gcm/instance_id/instance_id_profile_service_factory.h"
|
| #include "chrome/browser/history/history_service_factory.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/search/suggestions/image_decoder_impl.h"
|
| @@ -306,6 +309,10 @@ ContentSuggestionsServiceFactory::ContentSuggestionsServiceFactory()
|
| DependsOn(ProfileOAuth2TokenServiceFactory::GetInstance());
|
| DependsOn(ProfileSyncServiceFactory::GetInstance());
|
| DependsOn(SigninManagerFactory::GetInstance());
|
| +#if defined(OS_ANDROID)
|
| + DependsOn(gcm::GCMProfileServiceFactory::GetInstance());
|
| + DependsOn(instance_id::InstanceIDProfileServiceFactory::GetInstance());
|
| +#endif // defined(OS_ANDROID)
|
| }
|
|
|
| ContentSuggestionsServiceFactory::~ContentSuggestionsServiceFactory() = default;
|
|
|