diff options
Diffstat (limited to 'remoting/host/event_executor_fake.cc')
-rw-r--r-- | remoting/host/event_executor_fake.cc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/remoting/host/event_executor_fake.cc b/remoting/host/event_executor_fake.cc new file mode 100644 index 0000000..a86ab4b --- /dev/null +++ b/remoting/host/event_executor_fake.cc @@ -0,0 +1,33 @@ +// 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. + +#include "remoting/host/event_executor_fake.h" + +namespace remoting { + +EventExecutorFake::EventExecutorFake() { +} + +EventExecutorFake::~EventExecutorFake() { +} + +void EventExecutorFake::InjectClipboardEvent( + const protocol::ClipboardEvent& event) { +} + +void EventExecutorFake::InjectKeyEvent(const protocol::KeyEvent& event) { +} + +void EventExecutorFake::InjectMouseEvent(const protocol::MouseEvent& event) { +} + +void EventExecutorFake::Start( + scoped_ptr<protocol::ClipboardStub> client_clipboard) { +} + +void EventExecutorFake::StopAndDelete() { + delete this; +} + +} // namespace remoting |