| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index b5e0205c695a091157307cf1d617568abc751caa..74543cf7f57d895f055b89da3bedd8bfe197331f 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -55,6 +55,7 @@
|
| #include "components/tracing/common/tracing_switches.h"
|
| #include "content/browser/appcache/appcache_dispatcher_host.h"
|
| #include "content/browser/appcache/chrome_appcache_service.h"
|
| +#include "content/browser/background_fetch/background_fetch_service_impl.h"
|
| #include "content/browser/background_sync/background_sync_service_impl.h"
|
| #include "content/browser/bad_message.h"
|
| #include "content/browser/blob_storage/blob_dispatcher_host.h"
|
| @@ -1317,6 +1318,11 @@ void RenderProcessHostImpl::RegisterMojoInterfaces() {
|
| base::Bind(&PushMessagingManager::BindRequest,
|
| base::Unretained(push_messaging_manager_.get())));
|
|
|
| + registry->AddInterface(base::Bind(
|
| + &BackgroundFetchServiceImpl::Create,
|
| + base::Unretained(storage_partition_impl_->GetBackgroundFetchContext()),
|
| + base::Unretained(storage_partition_impl_->GetServiceWorkerContext())));
|
| +
|
| registry->AddInterface(base::Bind(&RenderProcessHostImpl::CreateMusGpuRequest,
|
| base::Unretained(this)));
|
|
|
|
|