Changeset 156839 in webkit


Ignore:
Timestamp:
Oct 3, 2013 10:24:47 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] Compile error with VIDEO disabled.
https://bugs.webkit.org/show_bug.cgi?id=122266

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-10-03
Reviewed by Brent Fulgham.

  • dom/Document.cpp:

(WebCore::Document::dispatchFullScreenChangeOrErrorEvent): Protect with ENABLE(VIDEO) guard.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r156838 r156839  
     12013-10-03  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [WinCairo] Compile error with VIDEO disabled.
     4        https://bugs.webkit.org/show_bug.cgi?id=122266
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * dom/Document.cpp:
     9        (WebCore::Document::dispatchFullScreenChangeOrErrorEvent): Protect with ENABLE(VIDEO) guard.
     10
    1112013-10-03  Hans Muller  <hmuller@adobe.com>
    212
  • trunk/Source/WebCore/dom/Document.cpp

    r156825 r156839  
    54085408            queue.append(documentElement());
    54095409
     5410#if ENABLE(VIDEO)
    54105411        if (shouldNotifyMediaElement && isMediaElement(node.get()))
    54115412            toHTMLMediaElement(node.get())->enteredOrExitedFullscreen();
     5413#endif
    54125414        node->dispatchEvent(Event::create(eventName, true, false));
    54135415    }
Note: See TracChangeset for help on using the changeset viewer.