| 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/platform/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 { | |
| 18 class InputHandler; | |
| 19 } | |
| 20 | |
| 21 namespace ui { | 17 namespace ui { |
| 22 class LatencyInfo; | 18 class LatencyInfo; |
| 23 class SynchronousInputHandlerProxy; | 19 class SynchronousInputHandlerProxy; |
| 24 struct DidOverscrollParams; | 20 struct DidOverscrollParams; |
| 25 } | 21 } |
| 26 | 22 |
| 27 namespace content { | 23 namespace content { |
| 28 class InputHandlerManager; | 24 class InputHandlerManager; |
| 29 | 25 |
| 30 class CONTENT_EXPORT InputHandlerManagerClient { | 26 class CONTENT_EXPORT InputHandlerManagerClient { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 protected: | 68 protected: |
| 73 SynchronousInputHandlerProxyClient() {} | 69 SynchronousInputHandlerProxyClient() {} |
| 74 | 70 |
| 75 private: | 71 private: |
| 76 DISALLOW_COPY_AND_ASSIGN(SynchronousInputHandlerProxyClient); | 72 DISALLOW_COPY_AND_ASSIGN(SynchronousInputHandlerProxyClient); |
| 77 }; | 73 }; |
| 78 | 74 |
| 79 } // namespace content | 75 } // namespace content |
| 80 | 76 |
| 81 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_MANAGER_CLIENT_H_ | 77 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_MANAGER_CLIENT_H_ |
| OLD | NEW |