Bug 1892041 - Part 1: Update test262 features. r=spidermonkey-reviewers,dminor
[gecko.git] / dom / serviceworkers / PFetchEventOp.ipdl
blob75138d43d488ea946ddb00af6c598ab7549f4ca6
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 include protocol PRemoteWorkerController;
7 include ServiceWorkerOpArgs;
8 include FetchTypes;
10 namespace mozilla {
11 namespace dom {
13 [ManualDealloc]
14 protocol PFetchEventOp {
15   manager PRemoteWorkerController;
17  parent:
18   async PreloadResponse(ParentToParentInternalResponse aResponse);
20   async PreloadResponseTiming(ResponseTiming aTiming);
22   async PreloadResponseEnd(ResponseEndArgs aArgs);
24  child:
25   async AsyncLog(nsCString aScriptSpec, uint32_t aLineNumber,
26                  uint32_t aColumnNumber, nsCString aMessageName,
27                  nsString[] aParams);
29   async RespondWith(ParentToParentFetchEventRespondWithResult aResult);
31   async __delete__(ServiceWorkerFetchEventOpResult aResult);
34 }  // namespace dom
35 }  // namespace mozilla