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

Unified Diff: third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.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/mediarecorder/MediaRecorder.cpp
diff --git a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.cpp b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.cpp
index 15bd8642033eb41d1737a74b7666982fd8eda074..80f1a9d9398bab82e2b63a17fe9241a236daa1a2 100644
--- a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.cpp
+++ b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.cpp
@@ -332,7 +332,7 @@ void MediaRecorder::stopRecording()
scheduleDispatchEvent(Event::create(EventTypeNames::stop));
}
-void MediaRecorder::scheduleDispatchEvent(PassRefPtrWillBeRawPtr<Event> event)
+void MediaRecorder::scheduleDispatchEvent(RawPtr<Event> event)
{
m_scheduledEvents.append(event);
@@ -341,7 +341,7 @@ void MediaRecorder::scheduleDispatchEvent(PassRefPtrWillBeRawPtr<Event> event)
void MediaRecorder::dispatchScheduledEvent()
{
- WillBeHeapVector<RefPtrWillBeMember<Event>> events;
+ HeapVector<Member<Event>> events;
events.swap(m_scheduledEvents);
for (const auto& event : events)

Powered by Google App Engine
This is Rietveld 408576698