Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1073)

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698