OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_CLIENT_INPUT_HANDLER_H_ |
| 6 #define REMOTING_CLIENT_INPUT_HANDLER_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/task.h" |
| 10 |
| 11 namespace remoting { |
| 12 |
| 13 class InputHandler { |
| 14 public: |
| 15 InputHandler() {} |
| 16 virtual ~InputHandler() {} |
| 17 |
| 18 virtual void Initialize() = 0; |
| 19 |
| 20 protected: |
| 21 DISALLOW_COPY_AND_ASSIGN(InputHandler); |
| 22 }; |
| 23 |
| 24 } // namespace remoting |
| 25 |
| 26 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::InputHandler); |
| 27 |
| 28 #endif // REMOTING_CLIENT_INPUT_HANDLER_H_ |
OLD | NEW |