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

Unified Diff: remoting/client/plugin/pepper_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/plugin/pepper_view.h ('k') | remoting/client/x11_input_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/pepper_view.cc
===================================================================
--- remoting/client/plugin/pepper_view.cc (revision 57114)
+++ remoting/client/plugin/pepper_view.cc (working copy)
@@ -139,7 +139,7 @@
backing_store_height_ = height;
}
-void PepperView::HandleBeginUpdateStream(ChromotingHostMessage* msg) {
+void PepperView::HandleBeginUpdateStream(HostMessage* msg) {
if (!instance_->CurrentlyOnPluginThread()) {
RunTaskOnPluginThread(
NewRunnableMethod(this, &PepperView::HandleBeginUpdateStream,
@@ -147,7 +147,7 @@
return;
}
- scoped_ptr<ChromotingHostMessage> deleter(msg);
+ scoped_ptr<HostMessage> deleter(msg);
// TODO(hclam): Use the information from the message to create the decoder.
// We lazily construct the decoder.
@@ -169,7 +169,7 @@
NewRunnableMethod(this, &PepperView::OnDecodeDone));
}
-void PepperView::HandleUpdateStreamPacket(ChromotingHostMessage* msg) {
+void PepperView::HandleUpdateStreamPacket(HostMessage* msg) {
if (!instance_->CurrentlyOnPluginThread()) {
RunTaskOnPluginThread(
NewRunnableMethod(this, &PepperView::HandleUpdateStreamPacket,
@@ -180,7 +180,7 @@
decoder_->PartialDecode(msg);
}
-void PepperView::HandleEndUpdateStream(ChromotingHostMessage* msg) {
+void PepperView::HandleEndUpdateStream(HostMessage* msg) {
if (!instance_->CurrentlyOnPluginThread()) {
RunTaskOnPluginThread(
NewRunnableMethod(this, &PepperView::HandleEndUpdateStream,
@@ -188,7 +188,7 @@
return;
}
- scoped_ptr<ChromotingHostMessage> deleter(msg);
+ scoped_ptr<HostMessage> deleter(msg);
decoder_->EndDecode();
}
« no previous file with comments | « remoting/client/plugin/pepper_view.h ('k') | remoting/client/x11_input_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698