Backed out changeset 9d8b4c0b99ed (bug 1945683) for causing btime failures. CLOSED...
[gecko.git] / dom / workers / remoteworkers / PRemoteWorkerNonLifeCycleOpController.ipdl
blob1fce92c3f7a192d34b47e3c5de2aea8ffd28b8f3
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 file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 include RemoteWorkerTypes;
6 include ServiceWorkerOpArgs;
7 include SharedWorkerOpArgs;
9 namespace mozilla {
10 namespace dom{
12 [ChildProc=any]
13 protocol PRemoteWorkerNonLifeCycleOpController
16 parent:
17   async Terminated();
19   async Error(ErrorValue aValue);
21 child:
22   async ExecOp(SharedWorkerOpArgs aOpArgs);
24   async ExecServiceWorkerOp(ServiceWorkerOpArgs aOpArgs)
25       returns (ServiceWorkerOpResult aResult) ;
27   async Shutdown();
30 } // namespace dom
31 } // namespace mozilla