| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CLIENT_VIDEO_DISPATCHER_H_ | 5 #ifndef REMOTING_PROTOCOL_CLIENT_VIDEO_DISPATCHER_H_ |
| 6 #define REMOTING_PROTOCOL_CLIENT_VIDEO_DISPATCHER_H_ | 6 #define REMOTING_PROTOCOL_CLIENT_VIDEO_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 class ClientVideoDispatcher : public ChannelDispatcherBase { | 23 class ClientVideoDispatcher : public ChannelDispatcherBase { |
| 24 public: | 24 public: |
| 25 ClientVideoDispatcher(VideoStub* video_stub, ClientStub* client_stub); | 25 ClientVideoDispatcher(VideoStub* video_stub, ClientStub* client_stub); |
| 26 ~ClientVideoDispatcher() override; | 26 ~ClientVideoDispatcher() override; |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 struct PendingFrame; | 29 struct PendingFrame; |
| 30 typedef std::list<PendingFrame> PendingFramesList; | 30 typedef std::list<PendingFrame> PendingFramesList; |
| 31 | 31 |
| 32 void OnIncomingMessage(scoped_ptr<CompoundBuffer> message) override; | 32 void OnIncomingMessage(std::unique_ptr<CompoundBuffer> message) override; |
| 33 | 33 |
| 34 // Callback for VideoStub::ProcessVideoPacket(). | 34 // Callback for VideoStub::ProcessVideoPacket(). |
| 35 void OnPacketDone(PendingFramesList::iterator pending_frame); | 35 void OnPacketDone(PendingFramesList::iterator pending_frame); |
| 36 | 36 |
| 37 PendingFramesList pending_frames_; | 37 PendingFramesList pending_frames_; |
| 38 | 38 |
| 39 VideoStub* video_stub_; | 39 VideoStub* video_stub_; |
| 40 ClientStub* client_stub_; | 40 ClientStub* client_stub_; |
| 41 | 41 |
| 42 webrtc::DesktopSize screen_size_; | 42 webrtc::DesktopSize screen_size_; |
| 43 webrtc::DesktopVector screen_dpi_ = | 43 webrtc::DesktopVector screen_dpi_ = |
| 44 webrtc::DesktopVector(kDefaultDpi, kDefaultDpi); | 44 webrtc::DesktopVector(kDefaultDpi, kDefaultDpi); |
| 45 | 45 |
| 46 base::WeakPtrFactory<ClientVideoDispatcher> weak_factory_; | 46 base::WeakPtrFactory<ClientVideoDispatcher> weak_factory_; |
| 47 | 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(ClientVideoDispatcher); | 48 DISALLOW_COPY_AND_ASSIGN(ClientVideoDispatcher); |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 } // namespace protocol | 51 } // namespace protocol |
| 52 } // namespace remoting | 52 } // namespace remoting |
| 53 | 53 |
| 54 #endif // REMOTING_PROTOCOL_CLIENT_VIDEO_DISPATCHER_H_ | 54 #endif // REMOTING_PROTOCOL_CLIENT_VIDEO_DISPATCHER_H_ |
| OLD | NEW |