Changeset 250906 in webkit


Ignore:
Timestamp:
Oct 9, 2019 2:37:22 AM (5 years ago)
Author:
Fujii Hironori
Message:

Unreviewed build fix for Windows ports
https://bugs.webkit.org/show_bug.cgi?id=202630
<rdar://problem/56107907>

dom/Document.cpp(3990): error C2653: 'MediaStreamTrack': is not a class or namespace name
dom/Document.cpp(3990): error C3861: 'captureState': identifier not found

  • dom/Document.cpp:

(WebCore::Document::updateIsPlayingMedia): Restored #if ENABLE(MEDIA_STREAM).

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r250905 r250906  
     12019-10-09  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        Unreviewed build fix for Windows ports
     4        https://bugs.webkit.org/show_bug.cgi?id=202630
     5        <rdar://problem/56107907>
     6
     7        dom/Document.cpp(3990): error C2653: 'MediaStreamTrack': is not a class or namespace name
     8        dom/Document.cpp(3990): error C3861: 'captureState': identifier not found
     9
     10        * dom/Document.cpp:
     11        (WebCore::Document::updateIsPlayingMedia): Restored #if ENABLE(MEDIA_STREAM).
     12
    1132019-10-09  Antti Koivisto  <antti@apple.com>
    214
  • trunk/Source/WebCore/dom/Document.cpp

    r250900 r250906  
    39883988        state |= audioProducer.mediaState();
    39893989
     3990#if ENABLE(MEDIA_STREAM)
    39903991    state |= MediaStreamTrack::captureState(*this);
     3992#endif
    39913993
    39923994#if ENABLE(MEDIA_SESSION)
Note: See TracChangeset for help on using the changeset viewer.