OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_PROTOCOL_RTP_READER_H_ | 5 #ifndef REMOTING_PROTOCOL_RTP_READER_H_ |
6 #define REMOTING_PROTOCOL_RTP_READER_H_ | 6 #define REMOTING_PROTOCOL_RTP_READER_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/memory/scoped_ptr.h" | |
10 #include "remoting/base/compound_buffer.h" | 9 #include "remoting/base/compound_buffer.h" |
11 #include "remoting/protocol/rtp_utils.h" | 10 #include "remoting/protocol/rtp_utils.h" |
12 #include "remoting/protocol/socket_reader_base.h" | 11 #include "remoting/protocol/socket_reader_base.h" |
13 | 12 |
14 namespace remoting { | 13 namespace remoting { |
15 namespace protocol { | 14 namespace protocol { |
16 | 15 |
17 class RtpPacket { | 16 class RtpPacket { |
18 public: | 17 public: |
19 RtpPacket(); | 18 RtpPacket(); |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 int total_packets_received_; | 76 int total_packets_received_; |
78 | 77 |
79 DISALLOW_COPY_AND_ASSIGN(RtpReader); | 78 DISALLOW_COPY_AND_ASSIGN(RtpReader); |
80 }; | 79 }; |
81 | 80 |
82 } // namespace protocol | 81 } // namespace protocol |
83 } // namespace remoting | 82 } // namespace remoting |
84 | 83 |
85 | 84 |
86 #endif // REMOTING_PROTOCOL_RTP_READER_H_ | 85 #endif // REMOTING_PROTOCOL_RTP_READER_H_ |
OLD | NEW |