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

Side by Side Diff: third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h

Issue 1580883002: Oilpan: move AsyncMethodRunner to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename to RawPtrOrMemberTrait<> Created 4 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MediaRecorder_h 5 #ifndef MediaRecorder_h
6 #define MediaRecorder_h 6 #define MediaRecorder_h
7 7
8 #include "core/dom/ActiveDOMObject.h" 8 #include "core/dom/ActiveDOMObject.h"
9 #include "core/events/EventTarget.h" 9 #include "core/events/EventTarget.h"
10 #include "modules/EventTargetModules.h" 10 #include "modules/EventTargetModules.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 String m_mimeType; 91 String m_mimeType;
92 bool m_stopped; 92 bool m_stopped;
93 bool m_ignoreMutedMedia; 93 bool m_ignoreMutedMedia;
94 94
95 State m_state; 95 State m_state;
96 96
97 OwnPtr<BlobData> m_blobData; 97 OwnPtr<BlobData> m_blobData;
98 98
99 OwnPtr<WebMediaRecorderHandler> m_recorderHandler; 99 OwnPtr<WebMediaRecorderHandler> m_recorderHandler;
100 100
101 AsyncMethodRunner<MediaRecorder> m_dispatchScheduledEventRunner; 101 Member<AsyncMethodRunner<MediaRecorder>> m_dispatchScheduledEventRunner;
102 WillBeHeapVector<RefPtrWillBeMember<Event>> m_scheduledEvents; 102 WillBeHeapVector<RefPtrWillBeMember<Event>> m_scheduledEvents;
103 }; 103 };
104 104
105 } // namespace blink 105 } // namespace blink
106 106
107 #endif // MediaRecorder_h 107 #endif // MediaRecorder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698