|
Oilpan: Move MediaStreamSource, MediaStreamComponent and MediaStreamDescriptor
to oilpan's heap
- MediaStreamSource, MediaStreamComponent and MediaStreamDescriptor must be moved
to oilpan's heap in one go because their lifetime are tightly coupled.
- Removed m_descriptor->setClient(0) from MediaStream's destructor. This is OK
because MediaStreamDescriptor has a strong Member back to the Client
(i.e., MediaStream).
- Removed m_component->source()->removeObserver(this) from MediaStreamTrack's
destructor. This is OK because this CL made the observers weak
(i.e., MediaStreamSource::m_observers is a hash set of weak members to
MediaStreamTrack objects).
- Removed WebMediaStreamTrack::ExtraData::m_owner because it's unused.
- Introduced MediaStreamComponentDisposer to delay the destruction of
MediaStreamComponent::m_extraData. The ExtraData is exposed to the web
and some Chromium objects inherit from the ExtraData. If we clear the
m_extraData in the MediaStreamComponent's destructor, those Chromium-side
objects are also destructed in the MediaStreamComponent's destructor.
This is problematic because the destructors of the Chromium-side classes
can touch other on-heap objects in the Blink side. To avoid the issue,
we need to delay the destruction of the ExtraData to thread-specific
weak processing. The disposer pattern actually makes the deletion of
the extra data happen earlier and not later. The disposer makes sure
that the extra data is destructed in weak processing which is run before
sweeping and therefore all the objects are still alive and can be touched.
- The same problem arises for MediaStreamDescriptor and MediaStreamSource.
This CL adds MediaStreamDescriptorDisposer and MediaStreamSourceDisposer.
- This CL depends on https://codereview.chromium.org/543603003/ and https://codereview.chromium.org/549153002.
BUG= 340522
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=181702
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=182399
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=182826
Total comments: 1
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+208 lines, -131 lines) |
Patch |
 |
M |
Source/modules/mediastream/MediaStream.h
|
View
|
|
3 chunks |
+4 lines, -4 lines |
0 comments
|
Download
|
 |
M |
Source/modules/mediastream/MediaStream.cpp
|
View
|
1
2
3
|
3 chunks |
+4 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/modules/mediastream/MediaStreamRegistry.h
|
View
|
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/modules/mediastream/MediaStreamTrack.h
|
View
|
1
2
3
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/modules/mediastream/MediaStreamTrack.cpp
|
View
|
1
2
3
|
3 chunks |
+5 lines, -4 lines |
0 comments
|
Download
|
 |
M |
Source/modules/mediastream/RTCStatsRequestImpl.h
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/modules/mediastream/RTCStatsRequestImpl.cpp
|
View
|
1
2
3
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
Source/modules/mediastream/UserMediaRequest.h
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/modules/mediastream/UserMediaRequest.cpp
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/modules/webaudio/MediaStreamAudioDestinationNode.h
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/modules/webaudio/MediaStreamAudioDestinationNode.cpp
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
Source/platform/exported/WebMediaStream.cpp
|
View
|
|
2 chunks |
+1 line, -11 lines |
0 comments
|
Download
|
 |
M |
Source/platform/exported/WebMediaStreamSource.cpp
|
View
|
|
2 chunks |
+1 line, -6 lines |
0 comments
|
Download
|
 |
M |
Source/platform/exported/WebMediaStreamTrack.cpp
|
View
|
|
3 chunks |
+0 lines, -26 lines |
0 comments
|
Download
|
 |
M |
Source/platform/mediastream/MediaStreamComponent.h
|
View
|
|
4 chunks |
+10 lines, -7 lines |
0 comments
|
Download
|
 |
M |
Source/platform/mediastream/MediaStreamComponent.cpp
|
View
|
1
|
2 chunks |
+43 lines, -5 lines |
0 comments
|
Download
|
 |
M |
Source/platform/mediastream/MediaStreamDescriptor.h
|
View
|
|
4 chunks |
+15 lines, -13 lines |
0 comments
|
Download
|
 |
M |
Source/platform/mediastream/MediaStreamDescriptor.cpp
|
View
|
1
|
5 chunks |
+50 lines, -10 lines |
0 comments
|
Download
|
 |
M |
Source/platform/mediastream/MediaStreamSource.h
|
View
|
|
4 chunks |
+11 lines, -7 lines |
0 comments
|
Download
|
 |
M |
Source/platform/mediastream/MediaStreamSource.cpp
|
View
|
1
|
3 chunks |
+45 lines, -11 lines |
0 comments
|
Download
|
 |
M |
public/platform/WebMediaStream.h
|
View
|
|
1 chunk |
+1 line, -3 lines |
0 comments
|
Download
|
 |
M |
public/platform/WebMediaStreamSource.h
|
View
|
|
3 chunks |
+7 lines, -2 lines |
0 comments
|
Download
|
 |
M |
public/platform/WebMediaStreamTrack.h
|
View
|
|
2 chunks |
+1 line, -12 lines |
0 comments
|
Download
|
Total messages: 23 (7 generated)
|