| Index: third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp
|
| diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp b/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp
|
| index eaf52b9dcd3b2e2167a8cd4de49abccf98a89adc..102122f69d7bb5953c30344fb0658be686cbbdfe 100644
|
| --- a/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp
|
| +++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp
|
| @@ -87,14 +87,14 @@ void MediaStreamDescriptor::removeComponent(MediaStreamComponent* component) {
|
|
|
| void MediaStreamDescriptor::addRemoteTrack(MediaStreamComponent* component) {
|
| if (m_client)
|
| - m_client->addRemoteTrack(component);
|
| + m_client->addTrackByComponent(component);
|
| else
|
| addComponent(component);
|
| }
|
|
|
| void MediaStreamDescriptor::removeRemoteTrack(MediaStreamComponent* component) {
|
| if (m_client)
|
| - m_client->removeRemoteTrack(component);
|
| + m_client->removeTrackByComponent(component);
|
| else
|
| removeComponent(component);
|
| }
|
|
|