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

Unified Diff: remoting/host/chromoting_host.cc

Issue 12594009: Converted LocalInputMonitor into a SessionController instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 9 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/host/chromoting_host.h ('k') | remoting/host/chromoting_host_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_host.cc
diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
index 0a465c432c863373e884ad4929e8269243a992fc..447be4da21340d96cbd62e045533c961dc33837f 100644
--- a/remoting/host/chromoting_host.cc
+++ b/remoting/host/chromoting_host.cc
@@ -329,20 +329,6 @@ void ChromotingHost::set_protocol_config(
protocol_config_ = config.Pass();
}
-void ChromotingHost::OnLocalMouseMoved(const SkIPoint& new_pos) {
- if (!network_task_runner_->BelongsToCurrentThread()) {
- network_task_runner_->PostTask(
- FROM_HERE, base::Bind(&ChromotingHost::OnLocalMouseMoved,
- this, new_pos));
- return;
- }
-
- ClientList::iterator client;
- for (client = clients_.begin(); client != clients_.end(); ++client) {
- (*client)->OnLocalMouseMoved(new_pos);
- }
-}
-
void ChromotingHost::PauseSession(bool pause) {
if (!network_task_runner_->BelongsToCurrentThread()) {
network_task_runner_->PostTask(
« no previous file with comments | « remoting/host/chromoting_host.h ('k') | remoting/host/chromoting_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698