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

Unified Diff: remoting/client/chromoting_view.h

Issue 3161034: Rename (Host|Client)Message to Chromoting(Host|Client)Message. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Fix merge conflicts 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/chromoting_client.cc ('k') | remoting/client/plugin/pepper_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/chromoting_view.h
diff --git a/remoting/client/chromoting_view.h b/remoting/client/chromoting_view.h
index 051fd7b1fb42296cfec089a50f1c80ce3266f325..0f19c09ef9775ce85d861dd835e995bbfeda7dde 100644
--- a/remoting/client/chromoting_view.h
+++ b/remoting/client/chromoting_view.h
@@ -51,7 +51,7 @@ class ChromotingView {
// (1) Perform any platform-specific tasks for start of update stream.
// (2) Make sure the |frame_| has been initialized.
// (3) Delete the HostMessage.
- virtual void HandleBeginUpdateStream(HostMessage* msg) = 0;
+ virtual void HandleBeginUpdateStream(ChromotingHostMessage* msg) = 0;
// Handle the UpdateStreamPacket message.
// This method should perform the following tasks:
@@ -66,14 +66,14 @@ class ChromotingView {
// * For a given begin/end update stream, the encodings specified in the
// update packets must all match. We may revisit this constraint at a
// later date.
- virtual void HandleUpdateStreamPacket(HostMessage* msg) = 0;
+ virtual void HandleUpdateStreamPacket(ChromotingHostMessage* msg) = 0;
// Handle the EndUpdateStream message.
// This method should perform the following tasks:
// (1) Call EndDecoding().
// (2) Perform any platform-specific tasks for end of update stream.
// (3) Delete the HostMessage.
- virtual void HandleEndUpdateStream(HostMessage* msg) = 0;
+ virtual void HandleEndUpdateStream(ChromotingHostMessage* msg) = 0;
protected:
// Setup the decoder based on the given encoding.
@@ -87,7 +87,7 @@ class ChromotingView {
// Decode the given message.
// BeginDecoding() must be called before any calls to Decode().
- bool Decode(HostMessage* msg);
+ bool Decode(ChromotingHostMessage* msg);
// Finish decoding and send notifications to update the view.
bool EndDecoding();
« no previous file with comments | « remoting/client/chromoting_client.cc ('k') | remoting/client/plugin/pepper_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698