Title: [231577] branches/safari-605-branch/Source/WebCore
Revision
231577
Author
[email protected]
Date
2018-05-09 11:21:37 -0700 (Wed, 09 May 2018)

Log Message

Cherry-pick r231516. rdar://problem/40096750

    Unreviewed build fix; add missing function definition.

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

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@231516 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-605-branch/Source/WebCore/ChangeLog (231576 => 231577)


--- branches/safari-605-branch/Source/WebCore/ChangeLog	2018-05-09 18:21:34 UTC (rev 231576)
+++ branches/safari-605-branch/Source/WebCore/ChangeLog	2018-05-09 18:21:37 UTC (rev 231577)
@@ -1,5 +1,23 @@
 2018-05-09  Jason Marcell  <[email protected]>
 
+        Cherry-pick r231516. rdar://problem/40096750
+
+    Unreviewed build fix; add missing function definition.
+    
+    * html/HTMLMediaElement.h:
+    (WebCore::HTMLMediaElement::didPassCORSAccessCheck const):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@231516 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2018-05-08  Jer Noble  <[email protected]>
+
+            Unreviewed build fix; add missing function definition.
+
+            * html/HTMLMediaElement.h:
+            (WebCore::HTMLMediaElement::didPassCORSAccessCheck const):
+
+2018-05-09  Jason Marcell  <[email protected]>
+
         Cherry-pick r231513. rdar://problem/40096750
 
     Mute MediaElementSourceNode when tainted.

Modified: branches/safari-605-branch/Source/WebCore/html/HTMLMediaElement.h (231576 => 231577)


--- branches/safari-605-branch/Source/WebCore/html/HTMLMediaElement.h	2018-05-09 18:21:34 UTC (rev 231576)
+++ branches/safari-605-branch/Source/WebCore/html/HTMLMediaElement.h	2018-05-09 18:21:37 UTC (rev 231577)
@@ -412,6 +412,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