Index: third_party/WebKit/Source/modules/push_messaging/PushSubscription.h |
diff --git a/third_party/WebKit/Source/modules/push_messaging/PushSubscription.h b/third_party/WebKit/Source/modules/push_messaging/PushSubscription.h |
index be6fd12d02eaa0cd743d79021dcd2460cbe0f75a..02df6adff6edfc9face37dc36d91a461f8686c75 100644 |
--- a/third_party/WebKit/Source/modules/push_messaging/PushSubscription.h |
+++ b/third_party/WebKit/Source/modules/push_messaging/PushSubscription.h |
@@ -31,7 +31,7 @@ |
KURL endpoint() const; |
- DOMArrayBuffer* getKey(const AtomicString& name) const; |
+ PassRefPtr<DOMArrayBuffer> getKey(const AtomicString& name) const; |
ScriptPromise unsubscribe(ScriptState*); |
ScriptValue toJSONForBinding(ScriptState*); |
@@ -43,8 +43,8 @@ |
KURL m_endpoint; |
- Member<DOMArrayBuffer> m_p256dh; |
- Member<DOMArrayBuffer> m_auth; |
+ RefPtr<DOMArrayBuffer> m_p256dh; |
+ RefPtr<DOMArrayBuffer> m_auth; |
Member<ServiceWorkerRegistration> m_serviceWorkerRegistration; |
}; |