Title: [218622] trunk/Source/WebCore
- Revision
- 218622
- Author
- [email protected]
- Date
- 2017-06-20 20:05:39 -0700 (Tue, 20 Jun 2017)
Log Message
WebAudioSourceProvider should be thread safe ref counted
https://bugs.webkit.org/show_bug.cgi?id=173623
Patch by Youenn Fablet <[email protected]> on 2017-06-20
Reviewed by Eric Carlson.
No observable change of behavior.
* platform/mediastream/WebAudioSourceProvider.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (218621 => 218622)
--- trunk/Source/WebCore/ChangeLog 2017-06-21 01:04:25 UTC (rev 218621)
+++ trunk/Source/WebCore/ChangeLog 2017-06-21 03:05:39 UTC (rev 218622)
@@ -1,3 +1,14 @@
+2017-06-20 Youenn Fablet <[email protected]>
+
+ WebAudioSourceProvider should be thread safe ref counted
+ https://bugs.webkit.org/show_bug.cgi?id=173623
+
+ Reviewed by Eric Carlson.
+
+ No observable change of behavior.
+
+ * platform/mediastream/WebAudioSourceProvider.h:
+
2017-06-20 Yoav Weiss <[email protected]>
[preload] Turn on preload's feature flag by default.
Modified: trunk/Source/WebCore/platform/mediastream/WebAudioSourceProvider.h (218621 => 218622)
--- trunk/Source/WebCore/platform/mediastream/WebAudioSourceProvider.h 2017-06-21 01:04:25 UTC (rev 218621)
+++ trunk/Source/WebCore/platform/mediastream/WebAudioSourceProvider.h 2017-06-21 03:05:39 UTC (rev 218622)
@@ -28,11 +28,11 @@
#if ENABLE(WEB_AUDIO) && ENABLE(MEDIA_STREAM)
#include "AudioSourceProvider.h"
-#include <wtf/RefCounted.h>
+#include <wtf/ThreadSafeRefCounted.h>
namespace WebCore {
-class WebAudioSourceProvider : public RefCounted<WebAudioSourceProvider>, public AudioSourceProvider {
+class WebAudioSourceProvider : public ThreadSafeRefCounted<WebAudioSourceProvider>, public AudioSourceProvider {
};
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes