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

Unified Diff: remoting/client/x11_view.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/client/x11_view.h ('k') | remoting/host/client_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/x11_view.cc
===================================================================
--- remoting/client/x11_view.cc (revision 57114)
+++ remoting/client/x11_view.cc (working copy)
@@ -169,8 +169,8 @@
CHECK(picture_) << "Backing picture not created";
}
-void X11View::HandleBeginUpdateStream(ChromotingHostMessage* msg) {
- scoped_ptr<ChromotingHostMessage> deleter(msg);
+void X11View::HandleBeginUpdateStream(HostMessage* msg) {
+ scoped_ptr<HostMessage> deleter(msg);
// TODO(hclam): Use the information from the message to create the decoder.
// We lazily construct the decoder.
@@ -184,12 +184,12 @@
NewRunnableMethod(this, &X11View::OnDecodeDone));
}
-void X11View::HandleUpdateStreamPacket(ChromotingHostMessage* msg) {
+void X11View::HandleUpdateStreamPacket(HostMessage* msg) {
decoder_->PartialDecode(msg);
}
-void X11View::HandleEndUpdateStream(ChromotingHostMessage* msg) {
- scoped_ptr<ChromotingHostMessage> deleter(msg);
+void X11View::HandleEndUpdateStream(HostMessage* msg) {
+ scoped_ptr<HostMessage> deleter(msg);
decoder_->EndDecode();
}
« no previous file with comments | « remoting/client/x11_view.h ('k') | remoting/host/client_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698