mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
92b2bfcbf5
--HG-- extra : transplant_source : %B2%1D%A4%8D%04%E9%BE%D9%C1%CC%C89%F0%07%07%15%B1Df%F1
52 lines
1.8 KiB
Plaintext
52 lines
1.8 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "domstubs.idl"
|
|
|
|
interface nsIDocument;
|
|
interface nsIURI;
|
|
|
|
[uuid(cc539f1e-1ce6-4af5-bf94-195b30bde010)]
|
|
interface nsIServiceWorkerManager : nsISupports
|
|
{
|
|
// Returns a Promise
|
|
nsISupports register(in nsIDOMWindow aWindow, in DOMString aScope, in DOMString aScriptURI);
|
|
|
|
// Returns a Promise
|
|
nsISupports unregister(in nsIDOMWindow aWindow, in DOMString aScope);
|
|
|
|
// aTarget MUST be a ServiceWorkerContainer.
|
|
[noscript] void AddContainerEventListener(in nsIURI aPageURI, in nsIDOMEventTarget aTarget);
|
|
[noscript] void RemoveContainerEventListener(in nsIURI aPageURI, in nsIDOMEventTarget aTarget);
|
|
|
|
/**
|
|
* Call this to request that document `aDoc` be controlled by a ServiceWorker
|
|
* if a registration exists for it's scope.
|
|
*
|
|
* This MUST only be called once per document!
|
|
*/
|
|
[notxpcom,nostdcall] void MaybeStartControlling(in nsIDocument aDoc);
|
|
|
|
/**
|
|
* Documents that have called MaybeStartControlling() should call this when
|
|
* they are destroyed. This function may be called multiple times, and is
|
|
* idempotent.
|
|
*/
|
|
[notxpcom,nostdcall] void MaybeStopControlling(in nsIDocument aDoc);
|
|
|
|
// Returns a ServiceWorker
|
|
[noscript] nsISupports GetInstalling(in nsIDOMWindow aWindow);
|
|
[noscript] nsISupports GetWaiting(in nsIDOMWindow aWindow);
|
|
[noscript] nsISupports GetActive(in nsIDOMWindow aWindow);
|
|
[noscript] nsISupports GetDocumentController(in nsIDOMWindow aWindow);
|
|
|
|
// Testing
|
|
DOMString getScopeForUrl(in DOMString path);
|
|
};
|
|
|
|
%{ C++
|
|
#define SERVICEWORKERMANAGER_CONTRACTID "@mozilla.org/serviceworkers/manager;1"
|
|
%}
|