2013-11-19 15:15:02 -08:00
|
|
|
/* -*- 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"
|
|
|
|
|
2014-07-20 23:25:44 -07:00
|
|
|
interface nsIDocument;
|
2014-07-14 14:15:23 -07:00
|
|
|
interface nsIURI;
|
|
|
|
|
2014-08-21 16:31:12 -07:00
|
|
|
[uuid(c7132f91-c46c-4e01-b75a-43babb254d93)]
|
2013-11-19 15:15:02 -08:00
|
|
|
interface nsIServiceWorkerManager : nsISupports
|
|
|
|
{
|
2014-08-21 16:31:12 -07:00
|
|
|
/**
|
|
|
|
* Registers a ServiceWorker with script loaded from `aScriptURI` to act as
|
|
|
|
* the ServiceWorker for aScope. Requires a valid entry settings object on
|
|
|
|
* the stack. This means you must call this from content code 'within'
|
|
|
|
* a window.
|
|
|
|
*
|
|
|
|
* Returns a Promise.
|
|
|
|
*/
|
|
|
|
nsISupports register(in DOMString aScope, in DOMString aScriptURI);
|
2013-11-19 15:15:02 -08:00
|
|
|
|
2014-08-21 16:31:12 -07:00
|
|
|
/**
|
|
|
|
* Unregister an existing ServiceWorker registration for `aScope`. Requires
|
|
|
|
* a valid entry settings object on the stack. This means you must call this
|
|
|
|
* from content code 'within' a window.
|
|
|
|
*
|
|
|
|
* Returns a Promise.
|
|
|
|
*/
|
2014-07-14 10:33:44 -07:00
|
|
|
nsISupports unregister(in DOMString aScope);
|
2013-11-19 15:15:02 -08:00
|
|
|
|
2014-08-20 08:40:00 -07:00
|
|
|
// Returns a Promise
|
|
|
|
nsISupports getRegistrations(in nsIDOMWindow aWindow);
|
|
|
|
|
|
|
|
// Returns a Promise
|
|
|
|
nsISupports getRegistration(in nsIDOMWindow aWindow, in DOMString aScope);
|
|
|
|
|
2014-08-19 06:56:00 -07:00
|
|
|
// aTarget MUST be a ServiceWorkerRegistration.
|
|
|
|
[noscript] void AddRegistrationEventListener(in nsIURI aPageURI, in nsIDOMEventTarget aTarget);
|
|
|
|
[noscript] void RemoveRegistrationEventListener(in nsIURI aPageURI, in nsIDOMEventTarget aTarget);
|
2014-07-14 14:15:23 -07:00
|
|
|
|
2014-07-20 23:25:44 -07:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2014-07-23 14:05:08 -07:00
|
|
|
// 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);
|
|
|
|
|
2014-07-11 11:52:19 -07:00
|
|
|
// Testing
|
|
|
|
DOMString getScopeForUrl(in DOMString path);
|
2013-11-19 15:15:02 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
%{ C++
|
|
|
|
#define SERVICEWORKERMANAGER_CONTRACTID "@mozilla.org/serviceworkers/manager;1"
|
|
|
|
%}
|