summaryrefslogtreecommitdiff
path: root/chromium/media/audio/fake_audio_log_factory.cc
blob: 6f752e559fddbe8d0bee2d838f1b99fdc23e3542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/audio/fake_audio_log_factory.h"

namespace media {

class FakeAudioLogImpl : public AudioLog {
 public:
  FakeAudioLogImpl() {}
  virtual ~FakeAudioLogImpl() {}
  virtual void OnCreated(int component_id,
                         const media::AudioParameters& params,
                         const std::string& input_device_id,
                         const std::string& output_device_id) OVERRIDE {}
  virtual void OnStarted(int component_id) OVERRIDE {}
  virtual void OnStopped(int component_id) OVERRIDE {}
  virtual void OnClosed(int component_id) OVERRIDE {}
  virtual void OnError(int component_id) OVERRIDE {}
  virtual void OnSetVolume(int component_id, double volume) OVERRIDE {}
};

FakeAudioLogFactory::FakeAudioLogFactory() {}
FakeAudioLogFactory::~FakeAudioLogFactory() {}

scoped_ptr<AudioLog> FakeAudioLogFactory::CreateAudioLog(
    AudioComponent component) {
  return scoped_ptr<AudioLog>(new FakeAudioLogImpl());
}

}  // namespace media