Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: remoting/protocol/webrtc_video_renderer_adapter.h

Issue 2538183002: remoting: Cleanup class/struct fwd declarations (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/protocol/webrtc_frame_scheduler.h ('k') | remoting/protocol/webrtc_video_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_RENDERER_ADAPTER_H_ 5 #ifndef REMOTING_PROTOCOL_WEBRTC_VIDEO_RENDERER_ADAPTER_H_
6 #define REMOTING_PROTOCOL_WEBRTC_VIDEO_RENDERER_ADAPTER_H_ 6 #define REMOTING_PROTOCOL_WEBRTC_VIDEO_RENDERER_ADAPTER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 12 matching lines...) Expand all
23 namespace webrtc { 23 namespace webrtc {
24 class DesktopFrame; 24 class DesktopFrame;
25 class VideoFrameBuffer; 25 class VideoFrameBuffer;
26 } // namespace webrtc 26 } // namespace webrtc
27 27
28 namespace remoting { 28 namespace remoting {
29 namespace protocol { 29 namespace protocol {
30 30
31 class MessagePipe; 31 class MessagePipe;
32 class VideoRenderer; 32 class VideoRenderer;
33 class WebrtcTransport;
34 struct ClientFrameStats; 33 struct ClientFrameStats;
35 struct HostFrameStats; 34 struct HostFrameStats;
36 35
37 class WebrtcVideoRendererAdapter 36 class WebrtcVideoRendererAdapter
38 : public rtc::VideoSinkInterface<webrtc::VideoFrame>, 37 : public rtc::VideoSinkInterface<webrtc::VideoFrame>,
39 public VideoStatsStub, 38 public VideoStatsStub,
40 public ClientVideoStatsDispatcher::EventHandler { 39 public ClientVideoStatsDispatcher::EventHandler {
41 public: 40 public:
42 WebrtcVideoRendererAdapter(const std::string& label, 41 WebrtcVideoRendererAdapter(const std::string& label,
43 VideoRenderer* video_renderer); 42 VideoRenderer* video_renderer);
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 82
84 base::WeakPtrFactory<WebrtcVideoRendererAdapter> weak_factory_; 83 base::WeakPtrFactory<WebrtcVideoRendererAdapter> weak_factory_;
85 84
86 DISALLOW_COPY_AND_ASSIGN(WebrtcVideoRendererAdapter); 85 DISALLOW_COPY_AND_ASSIGN(WebrtcVideoRendererAdapter);
87 }; 86 };
88 87
89 } // namespace remoting 88 } // namespace remoting
90 } // namespace protocol 89 } // namespace protocol
91 90
92 #endif // REMOTING_PROTOCOL_WEBRTC_VIDEO_RENDERER_ADAPTER_H_ 91 #endif // REMOTING_PROTOCOL_WEBRTC_VIDEO_RENDERER_ADAPTER_H_
OLDNEW
« no previous file with comments | « remoting/protocol/webrtc_frame_scheduler.h ('k') | remoting/protocol/webrtc_video_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698