forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudio_reader.h
35 lines (24 loc) · 898 Bytes
/
audio_reader.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_PROTOCOL_AUDIO_READER_H_
#define REMOTING_PROTOCOL_AUDIO_READER_H_
#include "base/compiler_specific.h"
#include "base/memory/raw_ptr.h"
#include "remoting/protocol/channel_dispatcher_base.h"
namespace remoting {
namespace protocol {
class AudioStub;
class AudioReader : public ChannelDispatcherBase {
public:
explicit AudioReader(AudioStub* audio_stub);
AudioReader(const AudioReader&) = delete;
AudioReader& operator=(const AudioReader&) = delete;
~AudioReader() override;
private:
void OnIncomingMessage(std::unique_ptr<CompoundBuffer> message) override;
raw_ptr<AudioStub> audio_stub_;
};
} // namespace protocol
} // namespace remoting
#endif // REMOTING_PROTOCOL_AUDIO_READER_H_