1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "remoting/protocol/audio_reader.h"
8 #include "net/socket/stream_socket.h"
9 #include "remoting/base/constants.h"
10 #include "remoting/protocol/session.h"
11 #include "remoting/protocol/session_config.h"
16 AudioReader::AudioReader(AudioStub
* audio_stub
)
17 : ChannelDispatcherBase(kAudioChannelName
),
18 parser_(base::Bind(&AudioStub::ProcessAudioPacket
,
19 base::Unretained(audio_stub
)),
23 AudioReader::~AudioReader() {
26 } // namespace protocol
27 } // namespace remoting