Changeset 228186 in webkit


Ignore:
Timestamp:
Feb 6, 2018 12:55:08 PM (6 years ago)
Author:
Ross Kirsling
Message:

Add missing #if ENABLE(VIDEO) after r228092.
https://bugs.webkit.org/show_bug.cgi?id=182539

Reviewed by Michael Catanzaro.

  • html/ImageBitmap.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r228185 r228186  
     12018-02-06  Ross Kirsling  <ross.kirsling@sony.com>
     2
     3        Add missing #if ENABLE(VIDEO) after r228092.
     4        https://bugs.webkit.org/show_bug.cgi?id=182539
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * html/ImageBitmap.cpp:
     9
    1102018-02-06  Antoine Quint  <graouts@apple.com>
    211
  • trunk/Source/WebCore/html/ImageBitmap.cpp

    r228153 r228186  
    113113}
    114114
     115#if ENABLE(VIDEO)
    115116static bool taintsOrigin(SecurityOrigin* origin, HTMLVideoElement& video)
    116117{
     
    127128    return !origin->canRequest(url);
    128129}
     130#endif
    129131
    130132// https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#cropped-to-the-source-rectangle-with-formatting
Note: See TracChangeset for help on using the changeset viewer.