blob: ff6692e0f8f6d05b381a54fccf76f8c3c032f60e [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/protocol/fake_audio_source.h"
namespace remoting::protocol {
FakeAudioSource::FakeAudioSource() = default;
FakeAudioSource::~FakeAudioSource() = default;
bool FakeAudioSource::Start(const PacketCapturedCallback& callback) {
callback_ = callback;
return true;
}
} // namespace remoting::protocol