Title: [257724] trunk/Source/WebKit
Revision
257724
Author
[email protected]
Date
2020-03-02 12:07:42 -0800 (Mon, 02 Mar 2020)

Log Message

[GPUP] Plumb through more MediaPlayer methods
https://bugs.webkit.org/show_bug.cgi?id=208423
<rdar://problem/59924386>

Unreviewed, remove an invalid ASSERT that causes some tests to crash.


* WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp:
(WebKit::MediaPlayerPrivateRemote::load):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (257723 => 257724)


--- trunk/Source/WebKit/ChangeLog	2020-03-02 19:57:15 UTC (rev 257723)
+++ trunk/Source/WebKit/ChangeLog	2020-03-02 20:07:42 UTC (rev 257724)
@@ -1,3 +1,14 @@
+2020-03-02  Eric Carlson  <[email protected]>
+
+        [GPUP] Plumb through more MediaPlayer methods
+        https://bugs.webkit.org/show_bug.cgi?id=208423
+        <rdar://problem/59924386>
+
+        Unreviewed, remove an invalid ASSERT that causes some tests to crash.
+
+        * WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp:
+        (WebKit::MediaPlayerPrivateRemote::load):
+
 2020-03-02  Per Arne Vollan  <[email protected]>
 
         [iOS] Deny mach lookup access to distributed notifications in the WebContent process

Modified: trunk/Source/WebKit/WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp (257723 => 257724)


--- trunk/Source/WebKit/WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp	2020-03-02 19:57:15 UTC (rev 257723)
+++ trunk/Source/WebKit/WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp	2020-03-02 20:07:42 UTC (rev 257724)
@@ -605,8 +605,6 @@
 #if ENABLE(MEDIA_STREAM)
 void MediaPlayerPrivateRemote::load(MediaStreamPrivate&)
 {
-    ASSERT_NOT_REACHED();
-
     callOnMainThread([weakThis = makeWeakPtr(*this), this] {
         if (!weakThis)
             return;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to