Changeset 237742 in webkit


Ignore:
Timestamp:
Nov 2, 2018 10:45:37 AM (5 years ago)
Author:
Philippe Normand
Message:

[GTK][WPE] Unreviewed, another --no-video --no-web-audio build fix following r237677

  • inspector/agents/InspectorDOMAgent.cpp:

(WebCore::InspectorDOMAgent::addEventListenersToNode):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r237739 r237742  
     12018-11-02  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GTK][WPE] Unreviewed, another --no-video --no-web-audio build fix following r237677
     4
     5        * inspector/agents/InspectorDOMAgent.cpp:
     6        (WebCore::InspectorDOMAgent::addEventListenersToNode):
     7
    182018-11-02  Daniel Bates  <dabates@apple.com>
    29
  • trunk/Source/WebCore/inspector/agents/InspectorDOMAgent.cpp

    r237708 r237742  
    21512151}
    21522152
     2153void InspectorDOMAgent::addEventListenersToNode(Node& node)
     2154{
    21532155#if ENABLE(VIDEO)
    2154 void InspectorDOMAgent::addEventListenersToNode(Node& node)
    2155 {
    21562156    auto callback = EventFiredCallback::create(*this);
    21572157
     
    21862186            m_mediaMetricsTimer.start(0_s, 1_s / 15.);
    21872187    }
    2188 }
    2189 #endif
     2188#else
     2189    UNUSED_PARAM(node);
     2190#endif // ENABLE(VIDEO)
     2191}
    21902192
    21912193void InspectorDOMAgent::didInsertDOMNode(Node& node)
Note: See TracChangeset for help on using the changeset viewer.