Title: [290725] trunk/Source/WebKit
Revision
290725
Author
[email protected]
Date
2022-03-02 05:49:59 -0800 (Wed, 02 Mar 2022)

Log Message

Annotate LibWebRTC with thread safety macros
https://bugs.webkit.org/show_bug.cgi?id=237321
<rdar://problem/89625577>

Unreviewed, addressing post commit style change.
No change of behavior.


* WebProcess/GPU/webrtc/LibWebRTCCodecs.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (290724 => 290725)


--- trunk/Source/WebKit/ChangeLog	2022-03-02 08:50:52 UTC (rev 290724)
+++ trunk/Source/WebKit/ChangeLog	2022-03-02 13:49:59 UTC (rev 290725)
@@ -1,3 +1,14 @@
+2022-03-02  Youenn Fablet  <[email protected]>
+
+        Annotate LibWebRTC with thread safety macros
+        https://bugs.webkit.org/show_bug.cgi?id=237321
+        <rdar://problem/89625577>
+
+        Unreviewed, addressing post commit style change.
+        No change of behavior.
+
+        * WebProcess/GPU/webrtc/LibWebRTCCodecs.h:
+
 2022-03-02  Alex Christensen  <[email protected]>
 
         Add SPI _WKDataTask

Modified: trunk/Source/WebKit/WebProcess/GPU/webrtc/LibWebRTCCodecs.h (290724 => 290725)


--- trunk/Source/WebKit/WebProcess/GPU/webrtc/LibWebRTCCodecs.h	2022-03-02 08:50:52 UTC (rev 290724)
+++ trunk/Source/WebKit/WebProcess/GPU/webrtc/LibWebRTCCodecs.h	2022-03-02 13:49:59 UTC (rev 290725)
@@ -145,7 +145,7 @@
     void gpuProcessConnectionDidClose(GPUProcessConnection&);
 
     IPC::Connection* encoderConnection(Encoder&) WTF_REQUIRES_LOCK(m_encodersConnectionLock);
-    void setEncoderConnection(Encoder&, RefPtr<IPC::Connection>&&)  WTF_REQUIRES_LOCK(m_encodersConnectionLock);
+    void setEncoderConnection(Encoder&, RefPtr<IPC::Connection>&&) WTF_REQUIRES_LOCK(m_encodersConnectionLock);
     IPC::Connection* decoderConnection(Decoder&) WTF_REQUIRES_LOCK(m_connectionLock);
     void setDecoderConnection(Decoder&, RefPtr<IPC::Connection>&&) WTF_REQUIRES_LOCK(m_connectionLock);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to