Bug 1494333 - index crons just like artifacts r=Callek
[gecko.git] / dom / serviceworkers / PServiceWorkerUpdater.ipdl
blob2036d2d4ca024250414fda5b61a288d57ef79ee2
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 PServiceWorkerManager;
7 namespace mozilla {
8 namespace dom {
10 protocol PServiceWorkerUpdater
12   manager PServiceWorkerManager;
14 parent:
15   // This __delete__ is safe because it's called when Proceed() is received and
16   // no other IPC messages are received nor sent.
17   async __delete__();
19 child:
20   async Proceed(bool allowed);
23 } // namespace dom
24 } // namespace mozilla