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

Unified Diff: remoting/host/client_connection.cc

Issue 3141036: Revert 57112 - Rename (Host|Client)Message to Chromoting(Host|Client)Message.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/client_connection.h ('k') | remoting/host/session_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_connection.cc
===================================================================
--- remoting/host/client_connection.cc (revision 57114)
+++ remoting/host/client_connection.cc (working copy)
@@ -38,10 +38,10 @@
// static
scoped_refptr<media::DataBuffer>
ClientConnection::CreateWireFormatDataBuffer(
- const ChromotingHostMessage* msg) {
+ const HostMessage* msg) {
// TODO(hclam): Instead of serializing |msg| create an DataBuffer
// object that wraps around it.
- scoped_ptr<const ChromotingHostMessage> message_deleter(msg);
+ scoped_ptr<const HostMessage> message_deleter(msg);
return SerializeAndFrameMessage(*msg);
}
@@ -53,7 +53,7 @@
if (!channel_)
return;
- ChromotingHostMessage msg;
+ HostMessage msg;
msg.mutable_init_client()->set_width(width);
msg.mutable_init_client()->set_height(height);
DCHECK(msg.IsInitialized());
@@ -67,7 +67,7 @@
if (!channel_)
return;
- ChromotingHostMessage msg;
+ HostMessage msg;
msg.mutable_begin_update_stream();
DCHECK(msg.IsInitialized());
@@ -96,7 +96,7 @@
if (!channel_)
return;
- ChromotingHostMessage msg;
+ HostMessage msg;
msg.mutable_end_update_stream();
DCHECK(msg.IsInitialized());
« no previous file with comments | « remoting/host/client_connection.h ('k') | remoting/host/session_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698