Title: [290496] trunk/Source/WebKit
Revision
290496
Author
[email protected]
Date
2022-02-25 00:12:27 -0800 (Fri, 25 Feb 2022)

Log Message

Remove dead code in GPUProcessConnection::dispatchMessage
https://bugs.webkit.org/show_bug.cgi?id=237135

Reviewed by Kimmo Kinnunen.

No change of behavior.

* WebProcess/GPU/GPUProcessConnection.cpp:
(WebKit::GPUProcessConnection::dispatchMessage):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (290495 => 290496)


--- trunk/Source/WebKit/ChangeLog	2022-02-25 08:08:43 UTC (rev 290495)
+++ trunk/Source/WebKit/ChangeLog	2022-02-25 08:12:27 UTC (rev 290496)
@@ -1,5 +1,17 @@
 2022-02-25  Youenn Fablet  <[email protected]>
 
+        Remove dead code in GPUProcessConnection::dispatchMessage
+        https://bugs.webkit.org/show_bug.cgi?id=237135
+
+        Reviewed by Kimmo Kinnunen.
+
+        No change of behavior.
+
+        * WebProcess/GPU/GPUProcessConnection.cpp:
+        (WebKit::GPUProcessConnection::dispatchMessage):
+
+2022-02-25  Youenn Fablet  <[email protected]>
+
         Make RemoteVideoFrameIdentifier a regular ObjectIdentifier
         https://bugs.webkit.org/show_bug.cgi?id=237136
 

Modified: trunk/Source/WebKit/WebProcess/GPU/GPUProcessConnection.cpp (290495 => 290496)


--- trunk/Source/WebKit/WebProcess/GPU/GPUProcessConnection.cpp	2022-02-25 08:08:43 UTC (rev 290495)
+++ trunk/Source/WebKit/WebProcess/GPU/GPUProcessConnection.cpp	2022-02-25 08:12:27 UTC (rev 290496)
@@ -222,10 +222,6 @@
     if (decoder.messageReceiverName() == Messages::RemoteGraphicsContextGLProxy::messageReceiverName())
         return RemoteGraphicsContextGLProxy::handleMessageToRemovedDestination(connection, decoder);
 #endif
-#if ENABLE(MEDIA_STREAMS)
-    if (decoder.messageReceiverName() == Messages::RemoteVideoFrameProxy::messageReceiverName())
-        return RemoteVideoFrameProxy::handleMessageToRemovedDestination(connection, decoder);
-#endif
 
 #if USE(AUDIO_SESSION)
     if (decoder.messageReceiverName() == Messages::RemoteAudioSession::messageReceiverName()) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to