Title: [251414] trunk/Source/WebCore
Revision
251414
Author
timothy_hor...@apple.com
Date
2019-10-21 21:32:38 -0700 (Mon, 21 Oct 2019)

Log Message

Fix the build

* platform/mock/MockAudioDestinationCocoa.cpp:
* platform/mock/MockAudioDestinationCocoa.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (251413 => 251414)


--- trunk/Source/WebCore/ChangeLog	2019-10-22 04:05:19 UTC (rev 251413)
+++ trunk/Source/WebCore/ChangeLog	2019-10-22 04:32:38 UTC (rev 251414)
@@ -1,3 +1,10 @@
+2019-10-21  Tim Horton  <timothy_hor...@apple.com>
+
+        Fix the build
+
+        * platform/mock/MockAudioDestinationCocoa.cpp:
+        * platform/mock/MockAudioDestinationCocoa.h:
+
 2019-10-21  Myles C. Maxfield  <mmaxfi...@apple.com>
 
         [Cocoa] Move ui-serif, ui-monospaced, and ui-rounded out from behind SPI

Modified: trunk/Source/WebCore/platform/mock/MockAudioDestinationCocoa.cpp (251413 => 251414)


--- trunk/Source/WebCore/platform/mock/MockAudioDestinationCocoa.cpp	2019-10-22 04:05:19 UTC (rev 251413)
+++ trunk/Source/WebCore/platform/mock/MockAudioDestinationCocoa.cpp	2019-10-22 04:32:38 UTC (rev 251414)
@@ -43,6 +43,8 @@
 {
 }
 
+MockAudioDestinationCocoa::~MockAudioDestinationCocoa() = default;
+
 void MockAudioDestinationCocoa::start()
 {
     m_timer.startRepeating(Seconds { m_numberOfFramesToProcess / sampleRate() });

Modified: trunk/Source/WebCore/platform/mock/MockAudioDestinationCocoa.h (251413 => 251414)


--- trunk/Source/WebCore/platform/mock/MockAudioDestinationCocoa.h	2019-10-22 04:05:19 UTC (rev 251413)
+++ trunk/Source/WebCore/platform/mock/MockAudioDestinationCocoa.h	2019-10-22 04:32:38 UTC (rev 251414)
@@ -40,6 +40,7 @@
 public:
     static std::unique_ptr<AudioDestination> create(AudioIOCallback& callback, float sampleRate) { return makeUnique<MockAudioDestinationCocoa>(callback, sampleRate); }
     WEBCORE_EXPORT MockAudioDestinationCocoa(AudioIOCallback&, float sampleRate);
+    WEBCORE_EXPORT virtual ~MockAudioDestinationCocoa();
 
 private:
     void start() final;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to