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

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

Issue 13932020: Set the initial resolution of an RDP session to the client screen resolution if it is available. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Clang Created 7 years, 8 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_proxy.h" 7 #include "base/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 14 matching lines...) Expand all
25 HostControlDispatcher::~HostControlDispatcher() { 25 HostControlDispatcher::~HostControlDispatcher() {
26 writer_.Close(); 26 writer_.Close();
27 } 27 }
28 28
29 void HostControlDispatcher::OnInitialized() { 29 void HostControlDispatcher::OnInitialized() {
30 reader_.Init(channel(), base::Bind( 30 reader_.Init(channel(), base::Bind(
31 &HostControlDispatcher::OnMessageReceived, base::Unretained(this))); 31 &HostControlDispatcher::OnMessageReceived, base::Unretained(this)));
32 writer_.Init(channel(), BufferedSocketWriter::WriteFailedCallback()); 32 writer_.Init(channel(), BufferedSocketWriter::WriteFailedCallback());
33 } 33 }
34 34
35 void HostControlDispatcher::SetCapabilities(
36 const Capabilities& capabilities) {
37 ControlMessage message;
38 message.mutable_capabilities()->CopyFrom(capabilities);
39 writer_.Write(SerializeAndFrameMessage(message), base::Closure());
40 }
41
35 void HostControlDispatcher::InjectClipboardEvent(const ClipboardEvent& event) { 42 void HostControlDispatcher::InjectClipboardEvent(const ClipboardEvent& event) {
36 ControlMessage message; 43 ControlMessage message;
37 message.mutable_clipboard_event()->CopyFrom(event); 44 message.mutable_clipboard_event()->CopyFrom(event);
38 writer_.Write(SerializeAndFrameMessage(message), base::Closure()); 45 writer_.Write(SerializeAndFrameMessage(message), base::Closure());
39 } 46 }
40 47
41 void HostControlDispatcher::SetCursorShape( 48 void HostControlDispatcher::SetCursorShape(
42 const CursorShapeInfo& cursor_shape) { 49 const CursorShapeInfo& cursor_shape) {
43 ControlMessage message; 50 ControlMessage message;
44 message.mutable_cursor_shape()->CopyFrom(cursor_shape); 51 message.mutable_cursor_shape()->CopyFrom(cursor_shape);
45 writer_.Write(SerializeAndFrameMessage(message), base::Closure()); 52 writer_.Write(SerializeAndFrameMessage(message), base::Closure());
46 } 53 }
47 54
48 void HostControlDispatcher::OnMessageReceived( 55 void HostControlDispatcher::OnMessageReceived(
49 scoped_ptr<ControlMessage> message, const base::Closure& done_task) { 56 scoped_ptr<ControlMessage> message, const base::Closure& done_task) {
50 DCHECK(clipboard_stub_); 57 DCHECK(clipboard_stub_);
51 DCHECK(host_stub_); 58 DCHECK(host_stub_);
52 59
53 base::ScopedClosureRunner done_runner(done_task); 60 base::ScopedClosureRunner done_runner(done_task);
54 61
55 if (message->has_clipboard_event()) { 62 if (message->has_clipboard_event()) {
56 clipboard_stub_->InjectClipboardEvent(message->clipboard_event()); 63 clipboard_stub_->InjectClipboardEvent(message->clipboard_event());
57 } else if (message->has_client_resolution()) { 64 } else if (message->has_client_resolution()) {
58 host_stub_->NotifyClientResolution(message->client_resolution()); 65 host_stub_->NotifyClientResolution(message->client_resolution());
59 } else if (message->has_video_control()) { 66 } else if (message->has_video_control()) {
60 host_stub_->ControlVideo(message->video_control()); 67 host_stub_->ControlVideo(message->video_control());
61 } else if (message->has_audio_control()) { 68 } else if (message->has_audio_control()) {
62 host_stub_->ControlAudio(message->audio_control()); 69 host_stub_->ControlAudio(message->audio_control());
70 } else if (message->has_capabilities()) {
71 host_stub_->SetCapabilities(message->capabilities());
63 } else { 72 } else {
64 LOG(WARNING) << "Unknown control message received."; 73 LOG(WARNING) << "Unknown control message received.";
65 } 74 }
66 } 75 }
67 76
68 } // namespace protocol 77 } // namespace protocol
69 } // namespace remoting 78 } // 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