| Index: remoting/host/event_executor_fake.cc
 | 
| diff --git a/remoting/host/event_executor_fake.cc b/remoting/host/event_executor_fake.cc
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..a86ab4b5f67a2d0fc0ff8d421666d13811e37d02
 | 
| --- /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
 | 
| 
 |