Disable ChannelMojo.
[chromium-blink-merge.git] / remoting / protocol / audio_reader.cc
blob02f8eb1c3e7e1bc64f43f37c322ddb990ad90c60
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"
7 #include "base/bind.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"
13 namespace remoting {
14 namespace protocol {
16 AudioReader::AudioReader(AudioStub* audio_stub)
17 : ChannelDispatcherBase(kAudioChannelName),
18 parser_(base::Bind(&AudioStub::ProcessAudioPacket,
19 base::Unretained(audio_stub)),
20 reader()) {
23 AudioReader::~AudioReader() {
26 } // namespace protocol
27 } // namespace remoting