Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h

Issue 2781573002: Conversational Speech tool, MultiEndCall::CheckTiming() and tests (Closed)
Patch Set: missing include to get std::back_inserter working on win targets Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h
diff --git a/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h b/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h
index 83aa9382e50394036ff03bff327b23794255355c..d71e6f896b9eca22227d7bbd522e0ad51d5d4637 100644
--- a/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h
+++ b/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h
@@ -24,17 +24,13 @@ namespace conversational_speech {
class MockWavReader : public WavReaderInterface {
public:
- MockWavReader(
- int sample_rate, size_t num_channels, size_t num_samples)
- : sample_rate_(sample_rate), num_channels_(num_channels),
- num_samples_(num_samples) {}
- ~MockWavReader() = default;
+ MockWavReader(int sample_rate, size_t num_channels, size_t num_samples);
+ ~MockWavReader();
- // TOOD(alessiob): use ON_CALL to return random samples.
+ // TODO(alessiob): use ON_CALL to return random samples.
MOCK_METHOD2(ReadFloatSamples, size_t(size_t, float*));
MOCK_METHOD2(ReadInt16Samples, size_t(size_t, int16_t*));
- // TOOD(alessiob): use ON_CALL to return properties.
MOCK_CONST_METHOD0(sample_rate, int());
MOCK_CONST_METHOD0(num_channels, size_t());
MOCK_CONST_METHOD0(num_samples, size_t());

Powered by Google App Engine
This is Rietveld 408576698