no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / dom / serviceworkers / PFetchEventOpProxy.ipdl
blobb63b2253a97cf0e2ef075175183f23ca8a3a740d
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 PRemoteWorker;
7 include ServiceWorkerOpArgs;
8 include FetchTypes;
10 namespace mozilla {
11 namespace dom {
13 protocol PFetchEventOpProxy {
14   manager PRemoteWorker;
16  parent:
17   async AsyncLog(nsCString aScriptSpec, uint32_t aLineNumber,
18                  uint32_t aColumnNumber, nsCString aMessageName,
19                  nsString[] aParams);
21   async RespondWith(ChildToParentFetchEventRespondWithResult aResult);
23   async __delete__(ServiceWorkerFetchEventOpResult aResult);
25  child:
26   async PreloadResponse(ParentToChildInternalResponse aResponse);
28   async PreloadResponseTiming(ResponseTiming aTiming);
30   async PreloadResponseEnd(ResponseEndArgs aArgs);
33 }  // namespace dom
34 }  // namespace mozilla