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

Side by Side Diff: media/audio/fake_audio_log_factory.cc

Issue 1864483002: Forward output glitch information from stream WebRTC log (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 6 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
« no previous file with comments | « media/audio/cras/audio_manager_cras.cc ('k') | media/audio/fake_audio_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "media/audio/fake_audio_log_factory.h" 5 #include "media/audio/fake_audio_log_factory.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/memory/ptr_util.h" 9 #include "base/memory/ptr_util.h"
10 10
11 namespace media { 11 namespace media {
12 12
13 class FakeAudioLogImpl : public AudioLog { 13 class FakeAudioLogImpl : public AudioLog {
14 public: 14 public:
15 FakeAudioLogImpl() {} 15 FakeAudioLogImpl() {}
16 ~FakeAudioLogImpl() override {} 16 ~FakeAudioLogImpl() override {}
17 void OnCreated(int component_id, 17 void OnCreated(int component_id,
18 const media::AudioParameters& params, 18 const media::AudioParameters& params,
19 const std::string& device_id) override {} 19 const std::string& device_id) override {}
20 void OnStarted(int component_id) override {} 20 void OnStarted(int component_id) override {}
21 void OnStopped(int component_id) override {} 21 void OnStopped(int component_id) override {}
22 void OnClosed(int component_id) override {} 22 void OnClosed(int component_id) override {}
23 void OnError(int component_id) override {} 23 void OnError(int component_id) override {}
24 void OnSetVolume(int component_id, double volume) override {} 24 void OnSetVolume(int component_id, double volume) override {}
25 void OnSwitchOutputDevice(int component_id, 25 void OnSwitchOutputDevice(int component_id,
26 const std::string& device_id) override {} 26 const std::string& device_id) override {}
27 void OnLogMessage(int component_id, const std::string& message) override {}
27 }; 28 };
28 29
29 FakeAudioLogFactory::FakeAudioLogFactory() {} 30 FakeAudioLogFactory::FakeAudioLogFactory() {}
30 FakeAudioLogFactory::~FakeAudioLogFactory() {} 31 FakeAudioLogFactory::~FakeAudioLogFactory() {}
31 32
32 std::unique_ptr<AudioLog> FakeAudioLogFactory::CreateAudioLog( 33 std::unique_ptr<AudioLog> FakeAudioLogFactory::CreateAudioLog(
33 AudioComponent component) { 34 AudioComponent component) {
34 return base::WrapUnique(new FakeAudioLogImpl()); 35 return base::WrapUnique(new FakeAudioLogImpl());
35 } 36 }
36 37
37 } // namespace media 38 } // namespace media
OLDNEW
« no previous file with comments | « media/audio/cras/audio_manager_cras.cc ('k') | media/audio/fake_audio_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698