| Index: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| index e45583cb91ee7d80258285f00d803e1f9d55cdb9..36f288c29ea8ebcfd4b4901ebfe6e4a07cfaf0d6 100644
|
| --- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| @@ -127,24 +127,34 @@ void ServiceWorkerGlobalScopeClientImpl::DidHandleExtendableMessageEvent(
|
| event_dispatch_time);
|
| }
|
|
|
| -void ServiceWorkerGlobalScopeClientImpl::RespondToFetchEvent(
|
| +void ServiceWorkerGlobalScopeClientImpl::RespondToFetchEventWithNoResponse(
|
| int fetch_event_id,
|
| double event_dispatch_time) {
|
| - client_.RespondToFetchEvent(fetch_event_id, event_dispatch_time);
|
| + client_.RespondToFetchEventWithNoResponse(fetch_event_id,
|
| + event_dispatch_time);
|
| }
|
|
|
| -void ServiceWorkerGlobalScopeClientImpl::RespondToPaymentRequestEvent(
|
| - int event_id,
|
| - const WebPaymentAppResponse& response,
|
| +void ServiceWorkerGlobalScopeClientImpl::RespondToFetchEvent(
|
| + int fetch_event_id,
|
| + const WebServiceWorkerResponse& response,
|
| double event_dispatch_time) {
|
| - client_.RespondToPaymentRequestEvent(event_id, response, event_dispatch_time);
|
| + client_.RespondToFetchEvent(fetch_event_id, response, event_dispatch_time);
|
| }
|
|
|
| -void ServiceWorkerGlobalScopeClientImpl::RespondToFetchEvent(
|
| +void ServiceWorkerGlobalScopeClientImpl::RespondToFetchEventWithResponseStream(
|
| int fetch_event_id,
|
| const WebServiceWorkerResponse& response,
|
| + WebServiceWorkerStreamHandle* stream_handle,
|
| double event_dispatch_time) {
|
| - client_.RespondToFetchEvent(fetch_event_id, response, event_dispatch_time);
|
| + client_.RespondToFetchEventWithResponseStream(
|
| + fetch_event_id, response, stream_handle, event_dispatch_time);
|
| +}
|
| +
|
| +void ServiceWorkerGlobalScopeClientImpl::RespondToPaymentRequestEvent(
|
| + int event_id,
|
| + const WebPaymentAppResponse& response,
|
| + double event_dispatch_time) {
|
| + client_.RespondToPaymentRequestEvent(event_id, response, event_dispatch_time);
|
| }
|
|
|
| void ServiceWorkerGlobalScopeClientImpl::DidHandleFetchEvent(
|
|
|