Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_HOST_EVENT_EXECUTOR_H_ | 5 #ifndef REMOTING_HOST_EVENT_EXECUTOR_H_ |
| 6 #define REMOTING_HOST_EVENT_EXECUTOR_H_ | 6 #define REMOTING_HOST_EVENT_EXECUTOR_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 | 9 #include "remoting/protocol/clipboard_stub.h" |
|
Wez
2012/03/15 01:14:44
Don't need this include any more?
simonmorris
2012/03/15 16:53:19
Done.
| |
| 10 #include "remoting/protocol/input_stub.h" | 10 #include "remoting/protocol/input_stub.h" |
| 11 | 11 |
| 12 class MessageLoop; | 12 class MessageLoop; |
| 13 | 13 |
| 14 namespace remoting { | 14 namespace remoting { |
| 15 | 15 |
| 16 class Capturer; | 16 class Capturer; |
| 17 | 17 |
| 18 class EventExecutor : public protocol::InputStub { | 18 class EventExecutor : public protocol::InputStub { |
| 19 public: | 19 public: |
| 20 // Creates default event executor for the current platform. | 20 // Creates default event executor for the current platform. |
| 21 // Does not take ownership of |message_loop| or |capturer|. | 21 // Does not take ownership of |message_loop| or |capturer|. |
| 22 static scoped_ptr<protocol::InputStub> Create(MessageLoop* message_loop, | 22 static scoped_ptr<protocol::InputStub> Create(MessageLoop* message_loop, |
| 23 Capturer* capturer); | 23 Capturer* capturer); |
| 24 }; | 24 }; |
| 25 | 25 |
| 26 } // namespace remoting | 26 } // namespace remoting |
| 27 | 27 |
| 28 #endif // REMOTING_HOST_EVENT_EXECUTOR_H_ | 28 #endif // REMOTING_HOST_EVENT_EXECUTOR_H_ |
| OLD | NEW |