Title: [260967] trunk/Source/WebKit
Revision
260967
Author
[email protected]
Date
2020-04-30 14:28:08 -0700 (Thu, 30 Apr 2020)

Log Message

Unreviewed, add missing parenthesis

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::handleMediaEvent):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (260966 => 260967)


--- trunk/Source/WebKit/ChangeLog	2020-04-30 21:19:15 UTC (rev 260966)
+++ trunk/Source/WebKit/ChangeLog	2020-04-30 21:28:08 UTC (rev 260967)
@@ -1,3 +1,10 @@
+2020-04-30  Devin Rousso  <[email protected]>
+
+        Unreviewed, add missing parenthesis
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::handleMediaEvent):
+
 2020-04-30  Chris Dumez  <[email protected]>
 
         [iOS][WK2] Add timeout for "Client navigation" foreground assertion

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (260966 => 260967)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-04-30 21:19:15 UTC (rev 260966)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-04-30 21:28:08 UTC (rev 260967)
@@ -6023,7 +6023,7 @@
     if (!hasRunningProcess())
         return;
     
-    send(Messages::WebPage::HandleMediaEvent(eventType);
+    send(Messages::WebPage::HandleMediaEvent(eventType));
 }
 
 void WebPageProxy::setVolumeOfMediaElement(double volume, uint64_t elementID)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to