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

Side by Side Diff: remoting/protocol/host_video_dispatcher.cc

Issue 1649063003: Add MessagePipe interface. Use it in ChannelDispatcherBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_parser
Patch Set: Created 4 years, 10 months 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/host_event_dispatcher.cc ('k') | remoting/protocol/message_pipe.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 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 #include "remoting/protocol/host_video_dispatcher.h" 5 #include "remoting/protocol/host_video_dispatcher.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "net/socket/stream_socket.h" 10 #include "net/socket/stream_socket.h"
11 #include "remoting/base/compound_buffer.h"
11 #include "remoting/base/constants.h" 12 #include "remoting/base/constants.h"
12 #include "remoting/proto/video.pb.h" 13 #include "remoting/proto/video.pb.h"
14 #include "remoting/protocol/message_pipe.h"
13 #include "remoting/protocol/message_serialization.h" 15 #include "remoting/protocol/message_serialization.h"
14 #include "remoting/protocol/video_feedback_stub.h" 16 #include "remoting/protocol/video_feedback_stub.h"
15 17
16 namespace remoting { 18 namespace remoting {
17 namespace protocol { 19 namespace protocol {
18 20
19 HostVideoDispatcher::HostVideoDispatcher() 21 HostVideoDispatcher::HostVideoDispatcher()
20 : ChannelDispatcherBase(kVideoChannelName) {} 22 : ChannelDispatcherBase(kVideoChannelName) {}
21 HostVideoDispatcher::~HostVideoDispatcher() {} 23 HostVideoDispatcher::~HostVideoDispatcher() {}
22 24
23 void HostVideoDispatcher::ProcessVideoPacket(scoped_ptr<VideoPacket> packet, 25 void HostVideoDispatcher::ProcessVideoPacket(scoped_ptr<VideoPacket> packet,
24 const base::Closure& done) { 26 const base::Closure& done) {
25 writer()->Write(SerializeAndFrameMessage(*packet), done); 27 message_pipe()->Send(packet.get(), done);
26 } 28 }
27 29
28 void HostVideoDispatcher::OnIncomingMessage( 30 void HostVideoDispatcher::OnIncomingMessage(
29 scoped_ptr<CompoundBuffer> message) { 31 scoped_ptr<CompoundBuffer> message) {
30 scoped_ptr<VideoAck> ack = ParseMessage<VideoAck>(message.get()); 32 scoped_ptr<VideoAck> ack = ParseMessage<VideoAck>(message.get());
31 if (!ack) 33 if (!ack)
32 return; 34 return;
33 if (video_feedback_stub_) 35 if (video_feedback_stub_)
34 video_feedback_stub_->ProcessVideoAck(std::move(ack)); 36 video_feedback_stub_->ProcessVideoAck(std::move(ack));
35 } 37 }
36 38
37 } // namespace protocol 39 } // namespace protocol
38 } // namespace remoting 40 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/host_event_dispatcher.cc ('k') | remoting/protocol/message_pipe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698