Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Unified Diff: Source/modules/push_messaging/PushManager.idl

Issue 841333002: Push API: rename registration to subscription. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/push_messaging/PushManager.idl
diff --git a/Source/modules/push_messaging/PushManager.idl b/Source/modules/push_messaging/PushManager.idl
index cbf2f8fe358f0cc1d7c4080b00d3548740171157..64563e0f709f1e14c602776d1f91120ac62ee561 100644
--- a/Source/modules/push_messaging/PushManager.idl
+++ b/Source/modules/push_messaging/PushManager.idl
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// http://w3c.github.io/push-api/#pushregistrationmanager-interface
+// http://w3c.github.io/push-api/#pushmanager-interface
Peter Beverloo 2015/01/09 17:23:22 micro nit: https://
Michael van Ouwerkerk 2015/01/09 17:34:39 Done.
[
GarbageCollected,
RuntimeEnabled=PushMessaging,
] interface PushManager {
- [CallWith=ScriptState, ImplementedAs=registerPushMessaging] Promise register();
- [CallWith=ScriptState] Promise<PushRegistration?> getRegistration();
+ [CallWith=ScriptState] Promise<PushSubscription> subscribe();
+ [CallWith=ScriptState] Promise<PushSubscription?> getSubscription();
[CallWith=ScriptState] Promise hasPermission();
};

Powered by Google App Engine
This is Rietveld 408576698