| 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 f427078571907ad29f7c5d8cfa6224ff030b70f1..a43a2537cce89f1c43c6f98f04c25e2b925d9327 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -1037,9 +1037,12 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| GetID(), storage_partition_impl_->GetQuotaManager(),
|
| GetContentClient()->browser()->CreateQuotaPermissionContext()));
|
|
|
| + scoped_refptr<ServiceWorkerContextWrapper> service_worker_context(
|
| + static_cast<ServiceWorkerContextWrapper*>(
|
| + storage_partition_impl_->GetServiceWorkerContext()));
|
| notification_message_filter_ = new NotificationMessageFilter(
|
| GetID(), storage_partition_impl_->GetPlatformNotificationContext(),
|
| - resource_context, browser_context);
|
| + resource_context, service_worker_context, browser_context);
|
| AddFilter(notification_message_filter_.get());
|
|
|
| AddFilter(new GamepadBrowserMessageFilter());
|
|
|