// Copyright 2012 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/host/ipc_audio_capturer.h" #include <utility> #include "remoting/host/desktop_session_proxy.h" #include "remoting/proto/audio.pb.h" namespace remoting { IpcAudioCapturer::IpcAudioCapturer( scoped_refptr<DesktopSessionProxy> desktop_session_proxy) : … { … } IpcAudioCapturer::~IpcAudioCapturer() = default; bool IpcAudioCapturer::Start(const PacketCapturedCallback& callback) { … } void IpcAudioCapturer::OnAudioPacket(std::unique_ptr<AudioPacket> packet) { … } } // namespace remoting