| Index: content/child/service_worker/service_worker_message_filter.h
|
| diff --git a/content/child/service_worker/service_worker_message_filter.h b/content/child/service_worker/service_worker_message_filter.h
|
| index de0b266f0ec31354271aded5434e55aa67487b4a..e79bd5af5c43576a1990b1536c0b7e19d52edde8 100644
|
| --- a/content/child/service_worker/service_worker_message_filter.h
|
| +++ b/content/child/service_worker/service_worker_message_filter.h
|
| @@ -11,6 +11,7 @@
|
| #include "base/macros.h"
|
| #include "content/child/worker_thread_message_filter.h"
|
| #include "content/common/content_export.h"
|
| +#include "content/common/url_loader_factory.mojom.h"
|
|
|
| struct ServiceWorkerMsg_MessageToDocument_Params;
|
|
|
| @@ -44,15 +45,18 @@ class CONTENT_EXPORT ServiceWorkerMessageFilter
|
| int provider_id,
|
| const ServiceWorkerRegistrationObjectInfo& info,
|
| const ServiceWorkerVersionAttributes& attrs);
|
| - void OnStaleGetRegistration(int thread_id,
|
| - int request_id,
|
| - const ServiceWorkerRegistrationObjectInfo& info,
|
| - const ServiceWorkerVersionAttributes& attrs);
|
| + void OnStaleGetRegistration(
|
| + int thread_id,
|
| + int request_id,
|
| + const ServiceWorkerRegistrationObjectInfo& info,
|
| + const ServiceWorkerVersionAttributes& attrs,
|
| + const mojo::MessagePipeHandle& url_loader_factory);
|
| void OnStaleGetRegistrations(
|
| int thread_id,
|
| int request_id,
|
| const std::vector<ServiceWorkerRegistrationObjectInfo>& info,
|
| - const std::vector<ServiceWorkerVersionAttributes>& attrs);
|
| + const std::vector<ServiceWorkerVersionAttributes>& attrs,
|
| + const std::vector<mojo::MessagePipeHandle>& url_loader_factories);
|
| void OnStaleSetVersionAttributes(
|
| int thread_id,
|
| int registration_handle_id,
|
|
|