| Index: modules/serviceworkers/ServiceWorkerRegistration.idl
|
| diff --git a/modules/serviceworkers/ServiceWorkerRegistration.idl b/modules/serviceworkers/ServiceWorkerRegistration.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..869808d342a46a89fcf5ed79109dae11f7c9193d
|
| --- /dev/null
|
| +++ b/modules/serviceworkers/ServiceWorkerRegistration.idl
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +// https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#service-worker-registration-obj
|
| +[
|
| + ActiveDOMObject,
|
| + RuntimeEnabled=ServiceWorker,
|
| + WillBeGarbageCollected,
|
| +] interface ServiceWorkerRegistration : EventTarget {
|
| + [Unforgeable] readonly attribute ServiceWorker? installing;
|
| + [Unforgeable] readonly attribute ServiceWorker? waiting;
|
| + [Unforgeable] readonly attribute ServiceWorker? active;
|
| + readonly attribute ScalarValueString scope;
|
| +
|
| + [CallWith=ScriptState] Promise unregister();
|
| +
|
| + attribute EventHandler onupdatefound;
|
| +};
|
|
|