summaryrefslogtreecommitdiffstats
path: root/remoting/host/local_input_monitor.h
diff options
context:
space:
mode:
authorasargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-13 20:18:47 +0000
committerasargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-13 20:18:47 +0000
commit3ff2be6ac4070532a7a77eac3cdb5d51aa9f675e (patch)
treec14fd5efda900c0814b730d35e0a1c3f025760f2 /remoting/host/local_input_monitor.h
parentfaa876c586096d73af30506e14b39cf24e78f05f (diff)
downloadchromium_src-3ff2be6ac4070532a7a77eac3cdb5d51aa9f675e.zip
chromium_src-3ff2be6ac4070532a7a77eac3cdb5d51aa9f675e.tar.gz
chromium_src-3ff2be6ac4070532a7a77eac3cdb5d51aa9f675e.tar.bz2
Revert 88878 - Block remote mouse inputs for a short time when local input is received.
BUG= TEST= Review URL: http://codereview.chromium.org/7134048 TBR=jamiewalch@google.com Review URL: http://codereview.chromium.org/7134099 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88882 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/local_input_monitor.h')
-rw-r--r--remoting/host/local_input_monitor.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/remoting/host/local_input_monitor.h b/remoting/host/local_input_monitor.h
deleted file mode 100644
index 7c2b9d5..0000000
--- a/remoting/host/local_input_monitor.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef REMOTING_LOCAL_INPUT_MONITOR_H_
-#define REMOTING_LOCAL_INPUT_MONITOR_H_
-
-namespace remoting {
-
-class ChromotingHost;
-
-class LocalInputMonitor {
- public:
- virtual ~LocalInputMonitor() {}
-
- virtual void Start(ChromotingHost* host) = 0;
- virtual void Stop() = 0;
-
- static LocalInputMonitor* Create();
-};
-
-} // namespace remoting
-
-#endif