| OLD | NEW | 
|   1 /* |   1 /* | 
|   2  *  Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |   2  *  Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 
|   3  * |   3  * | 
|   4  *  Use of this source code is governed by a BSD-style license |   4  *  Use of this source code is governed by a BSD-style license | 
|   5  *  that can be found in the LICENSE file in the root of the source |   5  *  that can be found in the LICENSE file in the root of the source | 
|   6  *  tree. An additional intellectual property rights grant can be found |   6  *  tree. An additional intellectual property rights grant can be found | 
|   7  *  in the file PATENTS.  All contributing project authors may |   7  *  in the file PATENTS.  All contributing project authors may | 
|   8  *  be found in the AUTHORS file in the root of the source tree. |   8  *  be found in the AUTHORS file in the root of the source tree. | 
|   9  */ |   9  */ | 
|  10  |  10  | 
|  11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MOCK_WAVREADE
    R_H_ |  11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MOCK_WAVREADE
    R_H_ | 
|  12 #define WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MOCK_WAVREADE
    R_H_ |  12 #define WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MOCK_WAVREADE
    R_H_ | 
|  13  |  13  | 
|  14 #include <cstddef> |  14 #include <cstddef> | 
|  15 #include <string> |  15 #include <string> | 
|  16  |  16  | 
 |  17 #include "webrtc/api/array_view.h" | 
|  17 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_i
    nterface.h" |  18 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_i
    nterface.h" | 
|  18 #include "webrtc/rtc_base/array_view.h" |  | 
|  19 #include "webrtc/test/gmock.h" |  19 #include "webrtc/test/gmock.h" | 
|  20 #include "webrtc/typedefs.h" |  20 #include "webrtc/typedefs.h" | 
|  21  |  21  | 
|  22 namespace webrtc { |  22 namespace webrtc { | 
|  23 namespace test { |  23 namespace test { | 
|  24 namespace conversational_speech { |  24 namespace conversational_speech { | 
|  25  |  25  | 
|  26 class MockWavReader : public WavReaderInterface { |  26 class MockWavReader : public WavReaderInterface { | 
|  27  public: |  27  public: | 
|  28   MockWavReader(int sample_rate, size_t num_channels, size_t num_samples); |  28   MockWavReader(int sample_rate, size_t num_channels, size_t num_samples); | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
|  40   const int sample_rate_; |  40   const int sample_rate_; | 
|  41   const size_t num_channels_; |  41   const size_t num_channels_; | 
|  42   const size_t num_samples_; |  42   const size_t num_samples_; | 
|  43 }; |  43 }; | 
|  44  |  44  | 
|  45 }  // namespace conversational_speech |  45 }  // namespace conversational_speech | 
|  46 }  // namespace test |  46 }  // namespace test | 
|  47 }  // namespace webrtc |  47 }  // namespace webrtc | 
|  48  |  48  | 
|  49 #endif  // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MOCK_WAVRE
    ADER_H_ |  49 #endif  // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MOCK_WAVRE
    ADER_H_ | 
| OLD | NEW |