| 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_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ | 5 #ifndef CONTENT_RENDERER_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ |
| 6 #define CONTENT_RENDERER_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ | 6 #define CONTENT_RENDERER_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "ui/gfx/vector2d_f.h" |
| 11 | 12 |
| 12 namespace ui { | 13 namespace ui { |
| 13 struct LatencyInfo; | 14 struct LatencyInfo; |
| 14 } | 15 } |
| 15 | 16 |
| 16 namespace cc { | 17 namespace cc { |
| 17 class InputHandler; | 18 class InputHandler; |
| 18 } | 19 } |
| 19 | 20 |
| 20 namespace gfx { | |
| 21 class Vector2dF; | |
| 22 } | |
| 23 | |
| 24 namespace WebKit { | 21 namespace WebKit { |
| 25 class WebInputEvent; | 22 class WebInputEvent; |
| 26 } | 23 } |
| 27 | 24 |
| 28 namespace content { | 25 namespace content { |
| 29 | 26 |
| 30 class CONTENT_EXPORT InputHandlerManagerClient { | 27 class CONTENT_EXPORT InputHandlerManagerClient { |
| 31 public: | 28 public: |
| 32 virtual ~InputHandlerManagerClient() {} | 29 virtual ~InputHandlerManagerClient() {} |
| 33 | 30 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 53 protected: | 50 protected: |
| 54 InputHandlerManagerClient() {} | 51 InputHandlerManagerClient() {} |
| 55 | 52 |
| 56 private: | 53 private: |
| 57 DISALLOW_COPY_AND_ASSIGN(InputHandlerManagerClient); | 54 DISALLOW_COPY_AND_ASSIGN(InputHandlerManagerClient); |
| 58 }; | 55 }; |
| 59 | 56 |
| 60 } // namespace content | 57 } // namespace content |
| 61 | 58 |
| 62 #endif // CONTENT_COMMON_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ | 59 #endif // CONTENT_COMMON_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ |
| OLD | NEW |