blob: 9c9443c1567f4fe2b8798574e544974a8944a51d [file] [log] [blame]
// Copyright (c) 2012 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_HOST_WIN_SESSION_INPUT_INJECTOR_H_
#define REMOTING_HOST_WIN_SESSION_INPUT_INJECTOR_H_
#include "base/basictypes.h"
#include "base/callback_forward.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "remoting/host/input_injector.h"
namespace base {
class SingleThreadTaskRunner;
} // namespace base
namespace remoting {
// Monitors and passes key/mouse events to a nested event executor. Injects
// Secure Attention Sequence (SAS) when Ctrl+Alt+Del key combination has been
// detected.
class SessionInputInjectorWin : public InputInjector {
public:
// |inject_sas| is invoked on |inject_sas_task_runner| to generate SAS on
// Vista+.
SessionInputInjectorWin(
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_ptr<InputInjector> nested_executor,
scoped_refptr<base::SingleThreadTaskRunner> inject_sas_task_runner,
const base::Closure& inject_sas);
virtual ~SessionInputInjectorWin();
// InputInjector implementation.
virtual void Start(
scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE;
// protocol::ClipboardStub implementation.
virtual void InjectClipboardEvent(
const protocol::ClipboardEvent& event) OVERRIDE;
// protocol::InputStub implementation.
virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE;
virtual void InjectTextEvent(const protocol::TextEvent& event) OVERRIDE;
virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE;
private:
// The actual implementation resides in SessionInputInjectorWin::Core class.
class Core;
scoped_refptr<Core> core_;
DISALLOW_COPY_AND_ASSIGN(SessionInputInjectorWin);
};
} // namespace remoting
#endif // REMOTING_HOST_WIN_SESSION_INPUT_INJECTOR_H_