Title: [234008] trunk/Source/ThirdParty/libwebrtc
Revision
234008
Author
[email protected]
Date
2018-07-19 15:56:39 -0700 (Thu, 19 Jul 2018)

Log Message

PlatformThread::Run does not need to log the fact that it is running
https://bugs.webkit.org/show_bug.cgi?id=187801i
<rdar://problem/40331421>

Patch by Youenn Fablet <[email protected]> on 2018-07-19
Reviewed by Chris Dumez.

* Source/webrtc/rtc_base/platform_thread.cc:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (234007 => 234008)


--- trunk/Source/ThirdParty/libwebrtc/ChangeLog	2018-07-19 21:55:41 UTC (rev 234007)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog	2018-07-19 22:56:39 UTC (rev 234008)
@@ -1,3 +1,13 @@
+2018-07-19  Youenn Fablet  <[email protected]>
+
+        PlatformThread::Run does not need to log the fact that it is running
+        https://bugs.webkit.org/show_bug.cgi?id=187801i
+        <rdar://problem/40331421>
+
+        Reviewed by Chris Dumez.
+
+        * Source/webrtc/rtc_base/platform_thread.cc:
+
 2018-07-14  Kocsen Chung  <[email protected]>
 
         Ensure WebKit stack is ad-hoc signed

Modified: trunk/Source/ThirdParty/libwebrtc/Source/webrtc/rtc_base/platform_thread.cc (234007 => 234008)


--- trunk/Source/ThirdParty/libwebrtc/Source/webrtc/rtc_base/platform_thread.cc	2018-07-19 21:55:41 UTC (rev 234007)
+++ trunk/Source/ThirdParty/libwebrtc/Source/webrtc/rtc_base/platform_thread.cc	2018-07-19 22:56:39 UTC (rev 234008)
@@ -242,8 +242,6 @@
 #endif
 
   do {
-    TRACE_EVENT1("webrtc", "PlatformThread::Run", "name", name_.c_str());
-
     // The interface contract of Start/Stop is that for a successful call to
     // Start, there should be at least one call to the run function.  So we
     // call the function before checking |stop_|.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to