| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "content/renderer/gpu/input_handler_manager.h" | 5 #include "content/renderer/gpu/input_handler_manager.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/debug/trace_event.h" | 8 #include "base/debug/trace_event.h" |
| 9 #include "base/message_loop/message_loop_proxy.h" |
| 9 #include "cc/input/input_handler.h" | 10 #include "cc/input/input_handler.h" |
| 10 #include "content/renderer/gpu/input_event_filter.h" | 11 #include "content/renderer/gpu/input_event_filter.h" |
| 11 #include "content/renderer/gpu/input_handler_manager_client.h" | 12 #include "content/renderer/gpu/input_handler_manager_client.h" |
| 12 #include "content/renderer/gpu/input_handler_wrapper.h" | 13 #include "content/renderer/gpu/input_handler_wrapper.h" |
| 13 | 14 |
| 14 using WebKit::WebInputEvent; | 15 using WebKit::WebInputEvent; |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 | 18 |
| 18 namespace { | 19 namespace { |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 gfx::Vector2dF accumulated_overscroll, | 125 gfx::Vector2dF accumulated_overscroll, |
| 125 gfx::Vector2dF current_fling_velocity) { | 126 gfx::Vector2dF current_fling_velocity) { |
| 126 client_->DidOverscroll(routing_id, | 127 client_->DidOverscroll(routing_id, |
| 127 accumulated_overscroll, | 128 accumulated_overscroll, |
| 128 current_fling_velocity); | 129 current_fling_velocity); |
| 129 } | 130 } |
| 130 | 131 |
| 131 | 132 |
| 132 | 133 |
| 133 } // namespace content | 134 } // namespace content |
| OLD | NEW |