Changeset 214772 in webkit


Ignore:
Timestamp:
Apr 3, 2017 5:24:23 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

[OWR] Fix class structure for the OWR mock classes after last modifications
https://bugs.webkit.org/show_bug.cgi?id=170173

Patch by Alejandro G. Castro <alex@igalia.com> on 2017-04-03
Reviewed by Youenn Fablet.

In case of OWR MockRealtimeMediaSource inherits from
RealtimeMediaSourceOwr, so we have to change some of the function
interfaces.

  • platform/mock/MockRealtimeMediaSource.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r214730 r214772  
     12017-04-03  Alejandro G. Castro  <alex@igalia.com>
     2
     3        [OWR] Fix class structure for the OWR mock classes after last modifications
     4        https://bugs.webkit.org/show_bug.cgi?id=170173
     5
     6        Reviewed by Youenn Fablet.
     7
     8        In case of OWR MockRealtimeMediaSource inherits from
     9        RealtimeMediaSourceOwr, so we have to change some of the function
     10        interfaces.
     11
     12        * platform/mock/MockRealtimeMediaSource.h:
     13
    1142017-04-02  Alexey Proskuryakov  <ap@apple.com>
    215
  • trunk/Source/WebCore/platform/mock/MockRealtimeMediaSource.h

    r214178 r214772  
    6262    virtual void updateSettings(RealtimeMediaSourceSettings&) = 0;
    6363    virtual void initializeCapabilities(RealtimeMediaSourceCapabilities&) = 0;
     64#if !USE(OPENWEBRTC)
    6465    virtual void initializeSupportedConstraints(RealtimeMediaSourceSupportedConstraints&) = 0;
     66#endif
    6567
    6668    void startProducingData() override;
     
    7779private:
    7880    void initializeCapabilities();
     81#if USE(OPENWEBRTC)
     82    void initializeSettings() final;
     83#else
    7984    void initializeSettings();
     85#endif
     86
    8087    bool isProducingData() const override { return m_isProducingData; }
    8188
Note: See TracChangeset for help on using the changeset viewer.