| Index: third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h
|
| diff --git a/third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h b/third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h
|
| index dcc9f0481954d3c9ec430af2eaeef6ec28eeec3d..192fdccacc77640fd301d7442a313197bbbe17bd 100644
|
| --- a/third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h
|
| +++ b/third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h
|
| @@ -107,10 +107,10 @@ public:
|
| private:
|
| RTCDataChannel(ExecutionContext*, PassOwnPtr<WebRTCDataChannelHandler>);
|
|
|
| - void scheduleDispatchEvent(PassRefPtrWillBeRawPtr<Event>);
|
| + void scheduleDispatchEvent(RawPtr<Event>);
|
| void scheduledEventTimerFired(Timer<RTCDataChannel>*);
|
|
|
| - RawPtrWillBeMember<ExecutionContext> m_executionContext;
|
| + Member<ExecutionContext> m_executionContext;
|
|
|
| OwnPtr<WebRTCDataChannelHandler> m_handler;
|
|
|
| @@ -123,7 +123,7 @@ private:
|
| BinaryType m_binaryType;
|
|
|
| Timer<RTCDataChannel> m_scheduledEventTimer;
|
| - WillBeHeapVector<RefPtrWillBeMember<Event>> m_scheduledEvents;
|
| + HeapVector<Member<Event>> m_scheduledEvents;
|
|
|
| unsigned m_bufferedAmountLowThreshold;
|
|
|
|
|