| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_RENDER_WIDGET_INPUT_HANDLER_H_ | 5 #ifndef CONTENT_RENDERER_INPUT_RENDER_WIDGET_INPUT_HANDLER_H_ |
| 6 #define CONTENT_RENDERER_INPUT_RENDER_WIDGET_INPUT_HANDLER_H_ | 6 #define CONTENT_RENDERER_INPUT_RENDER_WIDGET_INPUT_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/time/time.h" | 10 #include "base/time/time.h" |
| 10 #include "content/common/input/did_overscroll_params.h" | 11 #include "content/common/input/did_overscroll_params.h" |
| 11 #include "content/common/input/input_event_ack.h" | 12 #include "content/common/input/input_event_ack.h" |
| 12 #include "third_party/WebKit/public/web/WebInputEvent.h" | 13 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 13 #include "ui/base/ui_base_types.h" | 14 #include "ui/base/ui_base_types.h" |
| 14 | 15 |
| 15 namespace blink { | 16 namespace blink { |
| 16 struct WebFloatPoint; | 17 struct WebFloatPoint; |
| 17 struct WebFloatSize; | 18 struct WebFloatSize; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 bool ignore_ack_for_mouse_move_from_debugger_; | 103 bool ignore_ack_for_mouse_move_from_debugger_; |
| 103 | 104 |
| 104 scoped_ptr<InputEventAck> pending_input_event_ack_; | 105 scoped_ptr<InputEventAck> pending_input_event_ack_; |
| 105 | 106 |
| 106 DISALLOW_COPY_AND_ASSIGN(RenderWidgetInputHandler); | 107 DISALLOW_COPY_AND_ASSIGN(RenderWidgetInputHandler); |
| 107 }; | 108 }; |
| 108 | 109 |
| 109 } // namespace content | 110 } // namespace content |
| 110 | 111 |
| 111 #endif // CONTENT_RENDERER_INPUT_RENDER_WIDGET_INPUT_HANDLER_H_ | 112 #endif // CONTENT_RENDERER_INPUT_RENDER_WIDGET_INPUT_HANDLER_H_ |
| OLD | NEW |