| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_WEBRTC_VIDEO_STREAM_H_ | 5 #ifndef REMOTING_PROTOCOL_WEBRTC_VIDEO_STREAM_H_ |
| 6 #define REMOTING_PROTOCOL_WEBRTC_VIDEO_STREAM_H_ | 6 #define REMOTING_PROTOCOL_WEBRTC_VIDEO_STREAM_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "remoting/protocol/video_stream.h" | 11 #include "remoting/protocol/video_stream.h" |
| 10 #include "third_party/webrtc/base/scoped_ref_ptr.h" | 12 #include "third_party/webrtc/base/scoped_ref_ptr.h" |
| 11 | 13 |
| 12 namespace webrtc { | 14 namespace webrtc { |
| 13 class MediaStreamInterface; | 15 class MediaStreamInterface; |
| 14 class PeerConnectionInterface; | 16 class PeerConnectionInterface; |
| 15 } // namespace webrtc | 17 } // namespace webrtc |
| 16 | 18 |
| 17 namespace remoting { | 19 namespace remoting { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 35 rtc::scoped_refptr<webrtc::PeerConnectionInterface> connection_; | 37 rtc::scoped_refptr<webrtc::PeerConnectionInterface> connection_; |
| 36 rtc::scoped_refptr<webrtc::MediaStreamInterface> stream_; | 38 rtc::scoped_refptr<webrtc::MediaStreamInterface> stream_; |
| 37 | 39 |
| 38 DISALLOW_COPY_AND_ASSIGN(WebrtcVideoStream); | 40 DISALLOW_COPY_AND_ASSIGN(WebrtcVideoStream); |
| 39 }; | 41 }; |
| 40 | 42 |
| 41 } // namespace protocol | 43 } // namespace protocol |
| 42 } // namespace remoting | 44 } // namespace remoting |
| 43 | 45 |
| 44 #endif // REMOTING_PROTOCOL_WEBRTC_VIDEO_STREAM_H_ | 46 #endif // REMOTING_PROTOCOL_WEBRTC_VIDEO_STREAM_H_ |
| OLD | NEW |