Title: [231516] trunk/Source/WebCore
Revision
231516
Author
[email protected]
Date
2018-05-08 16:12:09 -0700 (Tue, 08 May 2018)

Log Message

Unreviewed build fix; add missing function definition.

* html/HTMLMediaElement.h:
(WebCore::HTMLMediaElement::didPassCORSAccessCheck const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (231515 => 231516)


--- trunk/Source/WebCore/ChangeLog	2018-05-08 21:53:01 UTC (rev 231515)
+++ trunk/Source/WebCore/ChangeLog	2018-05-08 23:12:09 UTC (rev 231516)
@@ -1,5 +1,12 @@
 2018-05-08  Jer Noble  <[email protected]>
 
+        Unreviewed build fix; add missing function definition.
+
+        * html/HTMLMediaElement.h:
+        (WebCore::HTMLMediaElement::didPassCORSAccessCheck const):
+
+2018-05-08  Jer Noble  <[email protected]>
+
         Mute MediaElementSourceNode when tainted.
         https://bugs.webkit.org/show_bug.cgi?id=184866
 

Modified: trunk/Source/WebCore/html/HTMLMediaElement.h (231515 => 231516)


--- trunk/Source/WebCore/html/HTMLMediaElement.h	2018-05-08 21:53:01 UTC (rev 231515)
+++ trunk/Source/WebCore/html/HTMLMediaElement.h	2018-05-08 23:12:09 UTC (rev 231516)
@@ -414,6 +414,7 @@
     using HTMLElement::scriptExecutionContext;
 
     bool hasSingleSecurityOrigin() const { return !m_player || m_player->hasSingleSecurityOrigin(); }
+    bool didPassCORSAccessCheck() const { return m_player && m_player->didPassCORSAccessCheck(); }
     
     WEBCORE_EXPORT bool isFullscreen() const override;
     bool isStandardFullscreen() const;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to