Index: remoting/host/chromoting_host.cc |
diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc |
index 5071400a21c19b04a0fb0e90d9cc36241f9ea0b6..5745f4d2a84028a9566998d53a93e915924da995 100644 |
--- a/remoting/host/chromoting_host.cc |
+++ b/remoting/host/chromoting_host.cc |
@@ -347,10 +347,11 @@ void ChromotingHost::set_protocol_config( |
protocol_config_.reset(config); |
} |
-void ChromotingHost::LocalMouseMoved(const SkIPoint& new_pos) { |
+void ChromotingHost::OnLocalMouseMoved(const SkIPoint& new_pos) { |
if (!context_->network_message_loop()->BelongsToCurrentThread()) { |
context_->network_message_loop()->PostTask( |
- FROM_HERE, base::Bind(&ChromotingHost::LocalMouseMoved, this, new_pos)); |
+ FROM_HERE, base::Bind(&ChromotingHost::OnLocalMouseMoved, |
+ this, new_pos)); |
return; |
} |