Changeset 202293 in webkit


Ignore:
Timestamp:
Jun 21, 2016 1:58:27 PM (8 years ago)
Author:
adam.bergkvist@ericsson.com
Message:

WebRTC: Remove unused MediaEndpointClient::gotRemoteSource function
https://bugs.webkit.org/show_bug.cgi?id=158986

Reviewed by Eric Carlson.

Remote sources are explicitly created with MediaEndpoint::createMutedRemoteSource so the
MediaEndpointClient::gotRemoteSource can be removed.

No change in behavior.

  • Modules/mediastream/MediaEndpointPeerConnection.cpp:

(WebCore::MediaEndpointPeerConnection::gotRemoteSource): Deleted.

  • Modules/mediastream/MediaEndpointPeerConnection.h:
  • platform/mediastream/MediaEndpoint.h:
Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r202292 r202293  
     12016-06-21  Adam Bergkvist  <adam.bergkvist@ericsson.com>
     2
     3        WebRTC: Remove unused MediaEndpointClient::gotRemoteSource function
     4        https://bugs.webkit.org/show_bug.cgi?id=158986
     5
     6        Reviewed by Eric Carlson.
     7
     8        Remote sources are explicitly created with MediaEndpoint::createMutedRemoteSource so the
     9        MediaEndpointClient::gotRemoteSource can be removed.
     10
     11        No change in behavior.
     12
     13        * Modules/mediastream/MediaEndpointPeerConnection.cpp:
     14        (WebCore::MediaEndpointPeerConnection::gotRemoteSource): Deleted.
     15        * Modules/mediastream/MediaEndpointPeerConnection.h:
     16        * platform/mediastream/MediaEndpoint.h:
     17
    1182016-06-20  Simon Fraser  <simon.fraser@apple.com>
    219
  • trunk/Source/WebCore/Modules/mediastream/MediaEndpointPeerConnection.cpp

    r202105 r202293  
    807807}
    808808
    809 void MediaEndpointPeerConnection::gotRemoteSource(unsigned mdescIndex, RefPtr<RealtimeMediaSource>&& source)
    810 {
    811     ASSERT(isMainThread());
    812 
    813     UNUSED_PARAM(mdescIndex);
    814     UNUSED_PARAM(source);
    815 
    816     notImplemented();
    817 }
    818 
    819809} // namespace WebCore
    820810
  • trunk/Source/WebCore/Modules/mediastream/MediaEndpointPeerConnection.h

    r202048 r202293  
    108108    void gotIceCandidate(unsigned mdescIndex, RefPtr<IceCandidate>&&) override;
    109109    void doneGatheringCandidates(unsigned mdescIndex) override;
    110     void gotRemoteSource(unsigned mdescIndex, RefPtr<RealtimeMediaSource>&&) override;
    111110
    112111    PeerConnectionBackendClient* m_client;
  • trunk/Source/WebCore/platform/mediastream/MediaEndpoint.h

    r202048 r202293  
    5151    virtual void gotIceCandidate(unsigned mdescIndex, RefPtr<IceCandidate>&&) = 0;
    5252    virtual void doneGatheringCandidates(unsigned mdescIndex) = 0;
    53     virtual void gotRemoteSource(unsigned mdescIndex, RefPtr<RealtimeMediaSource>&&) = 0;
    5453
    5554    virtual ~MediaEndpointClient() { }
Note: See TracChangeset for help on using the changeset viewer.