Index: webrtc/modules/audio_processing/test/test_utils.h |
diff --git a/webrtc/modules/audio_processing/test/test_utils.h b/webrtc/modules/audio_processing/test/test_utils.h |
index 5de67cf3b22c328e074738de4bc48a947ca635ec..ca66520cb561ab9d5a8fe9b74a4941a06933523e 100644 |
--- a/webrtc/modules/audio_processing/test/test_utils.h |
+++ b/webrtc/modules/audio_processing/test/test_utils.h |
@@ -47,6 +47,7 @@ class RawFile final { |
class ChannelBufferWavReader final { |
public: |
explicit ChannelBufferWavReader(std::unique_ptr<WavReader> file); |
+ ~ChannelBufferWavReader(); |
// Reads data from the file according to the |buffer| format. Returns false if |
// a full buffer can't be read from the file. |
@@ -63,6 +64,8 @@ class ChannelBufferWavReader final { |
class ChannelBufferWavWriter final { |
public: |
explicit ChannelBufferWavWriter(std::unique_ptr<WavWriter> file); |
+ ~ChannelBufferWavWriter(); |
+ |
void Write(const ChannelBuffer<float>& buffer); |
private: |