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_MANAGER_CLIENT_H_ | 5 #ifndef CONTENT_RENDERER_INPUT_INPUT_HANDLER_MANAGER_CLIENT_H_ |
6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_MANAGER_CLIENT_H_ | 6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_MANAGER_CLIENT_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
12 #include "content/common/input/input_event_ack_state.h" | 12 #include "content/common/input/input_event_ack_state.h" |
13 #include "third_party/WebKit/public/web/WebInputEvent.h" | 13 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
14 #include "ui/events/blink/scoped_web_input_event.h" | 14 #include "ui/events/blink/scoped_web_input_event.h" |
15 #include "ui/gfx/geometry/vector2d_f.h" | 15 #include "ui/gfx/geometry/vector2d_f.h" |
16 | 16 |
17 namespace cc { | 17 namespace cc { |
18 class InputHandler; | 18 class InputHandler; |
19 } | 19 } |
20 | 20 |
21 namespace ui { | 21 namespace ui { |
22 class LatencyInfo; | 22 class LatencyInfo; |
23 class SynchronousInputHandlerProxy; | 23 class SynchronousInputHandlerProxy; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 protected: | 72 protected: |
73 SynchronousInputHandlerProxyClient() {} | 73 SynchronousInputHandlerProxyClient() {} |
74 | 74 |
75 private: | 75 private: |
76 DISALLOW_COPY_AND_ASSIGN(SynchronousInputHandlerProxyClient); | 76 DISALLOW_COPY_AND_ASSIGN(SynchronousInputHandlerProxyClient); |
77 }; | 77 }; |
78 | 78 |
79 } // namespace content | 79 } // namespace content |
80 | 80 |
81 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_MANAGER_CLIENT_H_ | 81 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_MANAGER_CLIENT_H_ |
OLD | NEW |