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_PLUGIN_PEPPER_INPUT_HANDLER_H_ |
| 6 #define REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ |
| 7 |
| 8 #include "remoting/client/input_handler.h" |
| 9 |
| 10 namespace remoting { |
| 11 |
| 12 class PepperInputHandler : public InputHandler { |
| 13 public: |
| 14 PepperInputHandler(); |
| 15 virtual ~PepperInputHandler(); |
| 16 |
| 17 void Initialize(); |
| 18 |
| 19 private: |
| 20 DISALLOW_COPY_AND_ASSIGN(PepperInputHandler); |
| 21 }; |
| 22 |
| 23 } // namespace remoting |
| 24 |
| 25 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::PepperInputHandler); |
| 26 |
| 27 #endif // REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ |
OLD | NEW |