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

Unified Diff: third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.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/mediarecorder/MediaRecorder.h
diff --git a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
index f4b2c8688f9edcf8a7af95b5a99c855101684dac..77db8c926fb388dd6f6a7abdf1f4f3fcae5982b3 100644
--- a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
+++ b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
@@ -28,7 +28,7 @@ class MODULES_EXPORT MediaRecorder final
, public ActiveScriptWrappable
, public ActiveDOMObject {
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(MediaRecorder);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaRecorder);
+ USING_GARBAGE_COLLECTED_MIXIN(MediaRecorder);
DEFINE_WRAPPERTYPEINFO();
public:
enum class State {
@@ -90,7 +90,7 @@ private:
void createBlobEvent(Blob*);
void stopRecording();
- void scheduleDispatchEvent(PassRefPtrWillBeRawPtr<Event>);
+ void scheduleDispatchEvent(RawPtr<Event>);
void dispatchScheduledEvent();
Member<MediaStream> m_stream;
@@ -108,7 +108,7 @@ private:
OwnPtr<WebMediaRecorderHandler> m_recorderHandler;
Member<AsyncMethodRunner<MediaRecorder>> m_dispatchScheduledEventRunner;
- WillBeHeapVector<RefPtrWillBeMember<Event>> m_scheduledEvents;
+ HeapVector<Member<Event>> m_scheduledEvents;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698