blob: 775d63bba55ea697fcac9cad6831839101ba7890 [file] [log] [blame]
// 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
enum PushEncryptionKeyName {
"p256dh"
};
[
Exposed=(Window,ServiceWorker),
GarbageCollected,
RuntimeEnabled=PushMessaging,
] interface PushSubscription {
readonly attribute USVString endpoint;
[RuntimeEnabled=PushMessagingData] ArrayBuffer? getKey(PushEncryptionKeyName name);
[CallWith=ScriptState] Promise<boolean> unsubscribe();
serializer = { attribute };
};