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

Unified Diff: remoting/host/client_connection.cc

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/client_connection.h ('k') | remoting/host/client_connection_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_connection.cc
diff --git a/remoting/host/client_connection.cc b/remoting/host/client_connection.cc
index 9ae7b9571c3e3421f2134f7f4c703b574fd5c0f4..5bf962c32b79f311bac223f58d394222fd2cade0 100644
--- a/remoting/host/client_connection.cc
+++ b/remoting/host/client_connection.cc
@@ -40,7 +40,7 @@ void ClientConnection::SendInitClientMessage(int width, int height) {
DCHECK(!update_stream_size_);
DCHECK(channel_.get());
- chromotocol_pb::HostMessage msg;
+ HostMessage msg;
msg.mutable_init_client()->set_width(width);
msg.mutable_init_client()->set_height(height);
DCHECK(msg.IsInitialized());
@@ -51,7 +51,7 @@ void ClientConnection::SendBeginUpdateStreamMessage() {
DCHECK_EQ(loop_, MessageLoop::current());
DCHECK(channel_.get());
- chromotocol_pb::HostMessage msg;
+ HostMessage msg;
msg.mutable_begin_update_stream();
DCHECK(msg.IsInitialized());
@@ -62,12 +62,12 @@ void ClientConnection::SendBeginUpdateStreamMessage() {
}
void ClientConnection::SendUpdateStreamPacketMessage(
- chromotocol_pb::UpdateStreamPacketHeader* header,
+ UpdateStreamPacketHeader* header,
scoped_refptr<DataBuffer> data) {
DCHECK_EQ(loop_, MessageLoop::current());
DCHECK(channel_.get());
- chromotocol_pb::HostMessage msg;
+ HostMessage msg;
msg.mutable_update_stream_packet()->mutable_header()->CopyFrom(*header);
// TODO(hclam): This introduce one memory copy. Eliminate it.
msg.mutable_update_stream_packet()->set_data(
@@ -83,7 +83,7 @@ void ClientConnection::SendEndUpdateStreamMessage() {
DCHECK_EQ(loop_, MessageLoop::current());
DCHECK(channel_.get());
- chromotocol_pb::HostMessage msg;
+ HostMessage msg;
msg.mutable_end_update_stream();
DCHECK(msg.IsInitialized());
« no previous file with comments | « remoting/host/client_connection.h ('k') | remoting/host/client_connection_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698