Index: modules/push_messaging/PushSubscription.idl |
diff --git a/modules/push_messaging/PushSubscription.idl b/modules/push_messaging/PushSubscription.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0575d1f5af6befeb84b74f05688ed0872c6e3bbf |
--- /dev/null |
+++ b/modules/push_messaging/PushSubscription.idl |
@@ -0,0 +1,16 @@ |
+// 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://w3c.github.io/push-api/#pushsubscription-interface |
+ |
+[ |
+ Exposed=(Window,ServiceWorker), |
+ GarbageCollected, |
+ RuntimeEnabled=PushMessaging, |
+] interface PushSubscription { |
+ readonly attribute USVString endpoint; |
+ [CallWith=ScriptState] Promise<boolean> unsubscribe(); |
+ |
+ serializer = { attribute }; |
+}; |