OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_ | 5 #ifndef CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_ |
6 #define CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_ | 6 #define CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 | 13 |
14 namespace WebKit { | 14 namespace blink { |
15 class WebMediaStreamTrack; | 15 class WebMediaStreamTrack; |
16 } // namespace WebKit | 16 } // namespace blink |
17 | 17 |
18 class CastSession; | 18 class CastSession; |
19 class CastUdpTransport; | 19 class CastUdpTransport; |
20 | 20 |
21 // A key value pair structure for codec specific parameters. | 21 // A key value pair structure for codec specific parameters. |
22 struct CastCodecSpecificParams { | 22 struct CastCodecSpecificParams { |
23 std::string key; | 23 std::string key; |
24 std::string value; | 24 std::string value; |
25 | 25 |
26 CastCodecSpecificParams(); | 26 CastCodecSpecificParams(); |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 // Stop encoding. | 103 // Stop encoding. |
104 void Stop(); | 104 void Stop(); |
105 | 105 |
106 private: | 106 private: |
107 const scoped_refptr<CastSession> cast_session_; | 107 const scoped_refptr<CastSession> cast_session_; |
108 | 108 |
109 DISALLOW_COPY_AND_ASSIGN(CastSendTransport); | 109 DISALLOW_COPY_AND_ASSIGN(CastSendTransport); |
110 }; | 110 }; |
111 | 111 |
112 #endif // CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_ | 112 #endif // CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_ |
OLD | NEW |