| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index 8cf0d1b3e925b3959278ab4cf7185264b9a30f5a..545c32e50d993ee2c8850b0bfda406b3aff35547 100644
|
| --- a/chrome/browser/profiles/profile_impl.cc
|
| +++ b/chrome/browser/profiles/profile_impl.cc
|
| @@ -32,6 +32,8 @@
|
| #include "base/version.h"
|
| #include "build/build_config.h"
|
| #include "chrome/browser/background/background_contents_service_factory.h"
|
| +#include "chrome/browser/background_fetch/background_fetch_client_factory.h"
|
| +#include "chrome/browser/background_fetch/background_fetch_client_impl.h"
|
| #include "chrome/browser/background_sync/background_sync_controller_factory.h"
|
| #include "chrome/browser/background_sync/background_sync_controller_impl.h"
|
| #include "chrome/browser/bookmarks/bookmark_model_factory.h"
|
| @@ -1030,6 +1032,10 @@ content::PermissionManager* ProfileImpl::GetPermissionManager() {
|
| return PermissionManagerFactory::GetForProfile(this);
|
| }
|
|
|
| +content::BackgroundFetchClient* ProfileImpl::GetBackgroundFetchClient() {
|
| + return BackgroundFetchClientFactory::GetForProfile(this);
|
| +}
|
| +
|
| content::BackgroundSyncController* ProfileImpl::GetBackgroundSyncController() {
|
| return BackgroundSyncControllerFactory::GetForProfile(this);
|
| }
|
|
|