| Index: remoting/protocol/fake_audio_source.cc
|
| diff --git a/remoting/protocol/ice_config.cc b/remoting/protocol/fake_audio_source.cc
|
| similarity index 52%
|
| copy from remoting/protocol/ice_config.cc
|
| copy to remoting/protocol/fake_audio_source.cc
|
| index 4cd9a152f6beb85ef9cab17e8af09f46f9ec64f4..2404586ac9837e10686a9f3dfcb875d356e7cc32 100644
|
| --- a/remoting/protocol/ice_config.cc
|
| +++ b/remoting/protocol/fake_audio_source.cc
|
| @@ -2,14 +2,18 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "remoting/protocol/ice_config.h"
|
| +#include "remoting/protocol/fake_audio_source.h"
|
|
|
| namespace remoting {
|
| namespace protocol {
|
|
|
| -IceConfig::IceConfig() {}
|
| -IceConfig::IceConfig(const IceConfig& other) = default;
|
| -IceConfig::~IceConfig() {}
|
| +FakeAudioSource::FakeAudioSource() {}
|
| +FakeAudioSource::~FakeAudioSource() {}
|
| +
|
| +bool FakeAudioSource::Start(const PacketCapturedCallback& callback) {
|
| + callback_ = callback;
|
| + return true;
|
| +}
|
|
|
| } // namespace protocol
|
| } // namespace remoting
|
|
|