summaryrefslogtreecommitdiffstats
path: root/remoting/host/local_input_monitor.h
blob: 7c2b9d57a0e81033274a8b22217654cd005d249b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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