// Copyright 2013 The Chromium Authors // 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" #include <string> namespace media { class FakeAudioLogImpl : public AudioLog { … }; FakeAudioLogFactory::FakeAudioLogFactory() = default; FakeAudioLogFactory::~FakeAudioLogFactory() = default; std::unique_ptr<AudioLog> FakeAudioLogFactory::CreateAudioLog( AudioComponent component, int component_id) { … } } // namespace media