blob: a86ab4b5f67a2d0fc0ff8d421666d13811e37d02 (
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
25
26
27
28
29
30
31
32
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
|