| Index: Source/modules/mediastream/RTCDataChannelEvent.cpp
|
| diff --git a/Source/modules/mediastream/RTCDataChannelEvent.cpp b/Source/modules/mediastream/RTCDataChannelEvent.cpp
|
| index 42da9cf879623215e854b8c8a87c74fdbee4df70..1c1db170cf8c6289b62cd06ee41af2bc84323d76 100644
|
| --- a/Source/modules/mediastream/RTCDataChannelEvent.cpp
|
| +++ b/Source/modules/mediastream/RTCDataChannelEvent.cpp
|
| @@ -34,7 +34,7 @@ PassRefPtr<RTCDataChannelEvent> RTCDataChannelEvent::create()
|
| return adoptRef(new RTCDataChannelEvent);
|
| }
|
|
|
| -PassRefPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel)
|
| +PassRefPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCDataChannel> channel)
|
| {
|
| return adoptRef(new RTCDataChannelEvent(type, canBubble, cancelable, channel));
|
| }
|
| @@ -45,7 +45,7 @@ RTCDataChannelEvent::RTCDataChannelEvent()
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel)
|
| +RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCDataChannel> channel)
|
| : Event(type, canBubble, cancelable)
|
| , m_channel(channel)
|
| {
|
|
|