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

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, 10 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 fdda686beae88244eb8a8063db2a9dc92c444129..823b75fdbc947ca92964842a98d5f5b65bc9c989 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h
+++ b/third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h
@@ -106,10 +106,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;
@@ -122,7 +122,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