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

Unified Diff: remoting/host/client_connection.h

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/client/x11_view.cc ('k') | remoting/host/client_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_connection.h
===================================================================
--- remoting/host/client_connection.h (revision 57114)
+++ remoting/host/client_connection.h (working copy)
@@ -62,11 +62,11 @@
virtual ~ClientConnection();
- // Creates a DataBuffer object that wraps around ChromotingHostMessage. The
- // DataBuffer object will be responsible for serializing and framing the
- // message. DataBuffer will also own |msg| after this call.
+ // Creates a DataBuffer object that wraps around HostMessage. The DataBuffer
+ // object will be responsible for serializing and framing the message.
+ // DataBuffer will also own |msg| after this call.
static scoped_refptr<media::DataBuffer> CreateWireFormatDataBuffer(
- const ChromotingHostMessage* msg);
+ const HostMessage* msg);
virtual void set_jingle_channel(JingleChannel* channel) {
channel_ = channel;
@@ -84,11 +84,11 @@
// Send encoded update stream data to the viewer.
//
// |data| is the actual bytes in wire format. That means it is fully framed
- // and serialized from a ChromotingHostMessage. This is a special case only
- // for UpdateStreamPacket to reduce the amount of memory copies.
+ // and serialized from a HostMessage. This is a special case only for
+ // UpdateStreamPacket to reduce the amount of memory copies.
//
// |data| should be created by calling to
- // CreateWireFormatDataBuffer(ChromotingHostMessage).
+ // CreateWireFormatDataBuffer(HostMessage).
virtual void SendUpdateStreamPacketMessage(
scoped_refptr<media::DataBuffer> data);
« no previous file with comments | « remoting/client/x11_view.cc ('k') | remoting/host/client_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698