OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ | 5 #ifndef CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ |
6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ | 6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
9 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
10 #include "content/renderer/input/input_handler_manager.h" | 11 #include "content/renderer/input/input_handler_manager.h" |
11 #include "ui/events/blink/input_handler_proxy.h" | 12 #include "ui/events/blink/input_handler_proxy.h" |
12 #include "ui/events/blink/input_handler_proxy_client.h" | 13 #include "ui/events/blink/input_handler_proxy_client.h" |
13 | 14 |
14 namespace ui { | 15 namespace ui { |
15 class InputHandlerProxy; | 16 class InputHandlerProxy; |
16 class InputHandlerProxyClient; | 17 class InputHandlerProxyClient; |
17 } | 18 } |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 | 59 |
59 // Can only be accessed on the main thread. | 60 // Can only be accessed on the main thread. |
60 base::WeakPtr<RenderViewImpl> render_view_impl_; | 61 base::WeakPtr<RenderViewImpl> render_view_impl_; |
61 | 62 |
62 DISALLOW_COPY_AND_ASSIGN(InputHandlerWrapper); | 63 DISALLOW_COPY_AND_ASSIGN(InputHandlerWrapper); |
63 }; | 64 }; |
64 | 65 |
65 } // namespace content | 66 } // namespace content |
66 | 67 |
67 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ | 68 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ |
OLD | NEW |