| Index: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
|
| index e7a5e13d51ff0a5cf74b011f9a29835fa8204cf6..1d5603475511a18520ae9e88f54361c2e0981727 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
|
| @@ -54,9 +54,11 @@ class MODULES_EXPORT FetchEvent final : public ExtendableEvent {
|
| void respondWith(ScriptState*, ScriptPromise, ExceptionState&);
|
| ScriptPromise preloadResponse(ScriptState*);
|
|
|
| - void onNavigationPreloadResponse(std::unique_ptr<WebServiceWorkerResponse>,
|
| + void onNavigationPreloadResponse(ScriptState*,
|
| + std::unique_ptr<WebServiceWorkerResponse>,
|
| std::unique_ptr<WebDataConsumerHandle>);
|
| - void onNavigationPreloadError(std::unique_ptr<WebServiceWorkerError>);
|
| + void onNavigationPreloadError(ScriptState*,
|
| + std::unique_ptr<WebServiceWorkerError>);
|
|
|
| const AtomicString& interfaceName() const override;
|
|
|
|
|