Bug 1149271 - Remove subscriptionid. r=baku

This commit is contained in:
Doug Turner 2015-04-26 03:59:38 -07:00
Родитель 07676233b6
Коммит 8129277b27
2 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -63,11 +63,6 @@ PushSubscription.prototype = {
return this._pushEndpoint;
},
get subscriptionId() {
// TODO bug 1149271. Not sure what this is about.
return "The twins of Mammon quarrelled.";
},
unsubscribe: function() {
debug("unsubscribe! ")

Просмотреть файл

@ -12,7 +12,6 @@
interface PushSubscription
{
readonly attribute USVString endpoint;
readonly attribute DOMString subscriptionId;
Promise<boolean> unsubscribe();
jsonifier;
};