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

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp

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/RTCPeerConnection.cpp
diff --git a/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp b/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp
index 3bcbd9f36c49bb8fef41b0d24fc79c7b1775c138..0f0fa014df682f70a79c152b28cdeeb3129bdee8 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp
+++ b/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp
@@ -356,7 +356,7 @@ RTCOfferOptionsPlatform* parseOfferOptions(const Dictionary& options)
} // namespace
RTCPeerConnection::EventWrapper::EventWrapper(
- PassRefPtrWillBeRawPtr<Event> event,
+ RawPtr<Event> event,
PassOwnPtr<BoolFunction> function)
: m_event(event)
, m_setupFunction(function)
@@ -1131,12 +1131,12 @@ void RTCPeerConnection::closeInternal()
changeSignalingState(SignalingStateClosed);
}
-void RTCPeerConnection::scheduleDispatchEvent(PassRefPtrWillBeRawPtr<Event> event)
+void RTCPeerConnection::scheduleDispatchEvent(RawPtr<Event> event)
{
scheduleDispatchEvent(event, nullptr);
}
-void RTCPeerConnection::scheduleDispatchEvent(PassRefPtrWillBeRawPtr<Event> event,
+void RTCPeerConnection::scheduleDispatchEvent(RawPtr<Event> event,
PassOwnPtr<BoolFunction> setupFunction)
{
m_scheduledEvents.append(new EventWrapper(event, setupFunction));

Powered by Google App Engine
This is Rietveld 408576698