| Index: Source/WebCore/platform/mediastream/MediaStreamCenter.cpp
|
| diff --git a/Source/WebCore/platform/mediastream/MediaStreamCenter.cpp b/Source/WebCore/platform/mediastream/MediaStreamCenter.cpp
|
| index c57fefa6cbda7cae349ebd3fc577825d588c0212..2121ce2500d6c53abf9ea0f4cbaff7f7606e6e47 100644
|
| --- a/Source/WebCore/platform/mediastream/MediaStreamCenter.cpp
|
| +++ b/Source/WebCore/platform/mediastream/MediaStreamCenter.cpp
|
| @@ -56,20 +56,6 @@ void MediaStreamCenter::endLocalMediaStream(MediaStreamDescriptor* streamDescrip
|
| streamDescriptor->setEnded();
|
| }
|
|
|
| -void MediaStreamCenter::addMediaStreamTrack(MediaStreamDescriptor* streamDescriptor, MediaStreamComponent* component)
|
| -{
|
| - MediaStreamDescriptorClient* client = streamDescriptor->client();
|
| - if (client)
|
| - client->addRemoteTrack(component);
|
| -}
|
| -
|
| -void MediaStreamCenter::removeMediaStreamTrack(MediaStreamDescriptor* streamDescriptor, MediaStreamComponent* component)
|
| -{
|
| - MediaStreamDescriptorClient* client = streamDescriptor->client();
|
| - if (client)
|
| - client->removeRemoteTrack(component);
|
| -}
|
| -
|
| } // namespace WebCore
|
|
|
| #endif // ENABLE(MEDIA_STREAM)
|
|
|