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

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

Issue 795153003: Push API: rename to endpoint and registrationId. [2/3] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years 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
« no previous file with comments | « Source/modules/push_messaging/PushRegistration.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/push_messaging/PushRegistration.idl
diff --git a/Source/modules/push_messaging/PushRegistration.idl b/Source/modules/push_messaging/PushRegistration.idl
index 3aee6b856fb04ba9dba8741f375be12526736312..243215d9fc20fb200d414d64097ca52d7a21f3df 100644
--- a/Source/modules/push_messaging/PushRegistration.idl
+++ b/Source/modules/push_messaging/PushRegistration.idl
@@ -2,11 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+// http://www.w3.org/TR/push-api/#pushregistration-interface
+
[
GarbageCollected,
RuntimeEnabled=PushMessaging,
] interface PushRegistration {
- readonly attribute DOMString pushEndpoint;
- readonly attribute DOMString pushRegistrationId;
+ readonly attribute DOMString endpoint;
+ readonly attribute DOMString registrationId;
[CallWith=ScriptState] Promise<boolean> unregister();
};
« no previous file with comments | « Source/modules/push_messaging/PushRegistration.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698