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

Side by Side Diff: media/audio/mock_audio_manager.h

Issue 1864483002: Forward output glitch information from stream WebRTC log (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finished up for review. Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_ 5 #ifndef MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_
6 #define MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_ 6 #define MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "media/audio/audio_manager.h" 9 #include "media/audio/audio_manager.h"
10 10
(...skipping 16 matching lines...) Expand all
27 27
28 void ShowAudioInputSettings() override; 28 void ShowAudioInputSettings() override;
29 29
30 void GetAudioInputDeviceNames(media::AudioDeviceNames* device_names) override; 30 void GetAudioInputDeviceNames(media::AudioDeviceNames* device_names) override;
31 31
32 void GetAudioOutputDeviceNames( 32 void GetAudioOutputDeviceNames(
33 media::AudioDeviceNames* device_names) override; 33 media::AudioDeviceNames* device_names) override;
34 34
35 media::AudioOutputStream* MakeAudioOutputStream( 35 media::AudioOutputStream* MakeAudioOutputStream(
36 const media::AudioParameters& params, 36 const media::AudioParameters& params,
37 const std::string& device_id) override; 37 const std::string& device_id,
38 const StatisticsCallback& statistics_callback) override;
38 39
39 media::AudioOutputStream* MakeAudioOutputStreamProxy( 40 media::AudioOutputStream* MakeAudioOutputStreamProxy(
40 const media::AudioParameters& params, 41 const media::AudioParameters& params,
41 const std::string& device_id) override; 42 const std::string& device_id) override;
42 43
43 media::AudioInputStream* MakeAudioInputStream( 44 media::AudioInputStream* MakeAudioInputStream(
44 const media::AudioParameters& params, 45 const media::AudioParameters& params,
45 const std::string& device_id) override; 46 const std::string& device_id) override;
46 47
47 void AddOutputDeviceChangeListener(AudioDeviceListener* listener) override; 48 void AddOutputDeviceChangeListener(AudioDeviceListener* listener) override;
(...skipping 13 matching lines...) Expand all
61 protected: 62 protected:
62 ~MockAudioManager() override; 63 ~MockAudioManager() override;
63 64
64 private: 65 private:
65 DISALLOW_COPY_AND_ASSIGN(MockAudioManager); 66 DISALLOW_COPY_AND_ASSIGN(MockAudioManager);
66 }; 67 };
67 68
68 } // namespace media. 69 } // namespace media.
69 70
70 #endif // MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_ 71 #endif // MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698