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

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

Issue 22477006: Added JsonMessage to the control channel. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « remoting/protocol/host_control_dispatcher.h ('k') | remoting/protocol/host_stub.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_control_dispatcher.h" 5 #include "remoting/protocol/host_control_dispatcher.h"
6 6
7 #include "base/message_loop/message_loop_proxy.h" 7 #include "base/message_loop/message_loop_proxy.h"
8 #include "net/socket/stream_socket.h" 8 #include "net/socket/stream_socket.h"
9 #include "remoting/base/constants.h" 9 #include "remoting/base/constants.h"
10 #include "remoting/proto/control.pb.h" 10 #include "remoting/proto/control.pb.h"
(...skipping 28 matching lines...) Expand all
39 writer_.Write(SerializeAndFrameMessage(message), base::Closure()); 39 writer_.Write(SerializeAndFrameMessage(message), base::Closure());
40 } 40 }
41 41
42 void HostControlDispatcher::SetPairingResponse( 42 void HostControlDispatcher::SetPairingResponse(
43 const PairingResponse& pairing_response) { 43 const PairingResponse& pairing_response) {
44 ControlMessage message; 44 ControlMessage message;
45 message.mutable_pairing_response()->CopyFrom(pairing_response); 45 message.mutable_pairing_response()->CopyFrom(pairing_response);
46 writer_.Write(SerializeAndFrameMessage(message), base::Closure()); 46 writer_.Write(SerializeAndFrameMessage(message), base::Closure());
47 } 47 }
48 48
49 void HostControlDispatcher::DeliverHostMessage(
50 const ExtensionMessage& message) {
51 ControlMessage control_message;
52 control_message.mutable_extension_message()->CopyFrom(message);
53 writer_.Write(SerializeAndFrameMessage(control_message), base::Closure());
54 }
55
49 void HostControlDispatcher::InjectClipboardEvent(const ClipboardEvent& event) { 56 void HostControlDispatcher::InjectClipboardEvent(const ClipboardEvent& event) {
50 ControlMessage message; 57 ControlMessage message;
51 message.mutable_clipboard_event()->CopyFrom(event); 58 message.mutable_clipboard_event()->CopyFrom(event);
52 writer_.Write(SerializeAndFrameMessage(message), base::Closure()); 59 writer_.Write(SerializeAndFrameMessage(message), base::Closure());
53 } 60 }
54 61
55 void HostControlDispatcher::SetCursorShape( 62 void HostControlDispatcher::SetCursorShape(
56 const CursorShapeInfo& cursor_shape) { 63 const CursorShapeInfo& cursor_shape) {
57 ControlMessage message; 64 ControlMessage message;
58 message.mutable_cursor_shape()->CopyFrom(cursor_shape); 65 message.mutable_cursor_shape()->CopyFrom(cursor_shape);
(...skipping 12 matching lines...) Expand all
71 } else if (message->has_client_resolution()) { 78 } else if (message->has_client_resolution()) {
72 host_stub_->NotifyClientResolution(message->client_resolution()); 79 host_stub_->NotifyClientResolution(message->client_resolution());
73 } else if (message->has_video_control()) { 80 } else if (message->has_video_control()) {
74 host_stub_->ControlVideo(message->video_control()); 81 host_stub_->ControlVideo(message->video_control());
75 } else if (message->has_audio_control()) { 82 } else if (message->has_audio_control()) {
76 host_stub_->ControlAudio(message->audio_control()); 83 host_stub_->ControlAudio(message->audio_control());
77 } else if (message->has_capabilities()) { 84 } else if (message->has_capabilities()) {
78 host_stub_->SetCapabilities(message->capabilities()); 85 host_stub_->SetCapabilities(message->capabilities());
79 } else if (message->has_pairing_request()) { 86 } else if (message->has_pairing_request()) {
80 host_stub_->RequestPairing(message->pairing_request()); 87 host_stub_->RequestPairing(message->pairing_request());
88 } else if (message->has_extension_message()) {
89 host_stub_->DeliverClientMessage(message->extension_message());
81 } else { 90 } else {
82 LOG(WARNING) << "Unknown control message received."; 91 LOG(WARNING) << "Unknown control message received.";
83 } 92 }
84 } 93 }
85 94
86 } // namespace protocol 95 } // namespace protocol
87 } // namespace remoting 96 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/host_control_dispatcher.h ('k') | remoting/protocol/host_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698