Changeset 211286 in webkit


Ignore:
Timestamp:
Jan 27, 2017 10:20:01 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

[WebRTC] Use MediaEndPointPeerConnection if not using libwebrtc
https://bugs.webkit.org/show_bug.cgi?id=167504

Patch by Youenn Fablet <youennf@gmail.com> on 2017-01-27
Reviewed by Alex Christensen.

No change of behavior.

  • Modules/mediastream/MediaEndpointPeerConnection.cpp: If libwebrtc, we should use libwebrtc peer connection backend.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r211285 r211286  
     12017-01-27  Youenn Fablet  <youennf@gmail.com>
     2
     3        [WebRTC] Use MediaEndPointPeerConnection if not using libwebrtc
     4        https://bugs.webkit.org/show_bug.cgi?id=167504
     5
     6        Reviewed by Alex Christensen.
     7
     8        No change of behavior.
     9
     10        * Modules/mediastream/MediaEndpointPeerConnection.cpp: If libwebrtc, we should use libwebrtc peer connection backend.
     11
    1122017-01-27  Ryan Haddad  <ryanhaddad@apple.com>
    213
  • trunk/Source/WebCore/Modules/mediastream/MediaEndpointPeerConnection.cpp

    r209695 r211286  
    6969static const size_t icePasswordSize = 24;
    7070
     71#if !USE(LIBWEBRTC)
    7172static std::unique_ptr<PeerConnectionBackend> createMediaEndpointPeerConnection(RTCPeerConnection& peerConnection)
    7273{
     
    7576
    7677CreatePeerConnectionBackend PeerConnectionBackend::create = createMediaEndpointPeerConnection;
     78#endif
    7779
    7880static String randomString(size_t size)
Note: See TracChangeset for help on using the changeset viewer.