Index: Source/modules/mediastream/RTCDataChannelEvent.h |
diff --git a/Source/modules/mediastream/RTCDataChannelEvent.h b/Source/modules/mediastream/RTCDataChannelEvent.h |
index c96afc6ba70e314fdbbf63fd91aca65de5705741..e8699a1596cd67dc70ca11a56168f497e6e3fbed 100644 |
--- a/Source/modules/mediastream/RTCDataChannelEvent.h |
+++ b/Source/modules/mediastream/RTCDataChannelEvent.h |
@@ -36,7 +36,7 @@ public: |
virtual ~RTCDataChannelEvent(); |
static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(); |
- static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel>); |
+ static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCDataChannel>); |
RTCDataChannel* channel() const; |
@@ -46,9 +46,9 @@ public: |
private: |
RTCDataChannelEvent(); |
- RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel>); |
+ RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCDataChannel>); |
- RefPtr<RTCDataChannel> m_channel; |
+ RefPtrWillBeMember<RTCDataChannel> m_channel; |
}; |
} // namespace WebCore |