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/browser/renderer_host/render_widget_host_impl.h" | 5 #include "content/browser/renderer_host/render_widget_host_impl.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 #include <set> | 8 #include <set> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 2020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2031 if (!event.latency.FindLatency( | 2031 if (!event.latency.FindLatency( |
2032 ui::INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_COMPONENT, 0, NULL)) { | 2032 ui::INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_COMPONENT, 0, NULL)) { |
2033 // GestureEvent latency ends when it is acked but does not cause any | 2033 // GestureEvent latency ends when it is acked but does not cause any |
2034 // rendering scheduled. | 2034 // rendering scheduled. |
2035 ui::LatencyInfo latency = event.latency; | 2035 ui::LatencyInfo latency = event.latency; |
2036 latency.AddLatencyNumber( | 2036 latency.AddLatencyNumber( |
2037 ui::INPUT_EVENT_LATENCY_TERMINATED_GESTURE_COMPONENT, 0 ,0); | 2037 ui::INPUT_EVENT_LATENCY_TERMINATED_GESTURE_COMPONENT, 0 ,0); |
2038 } | 2038 } |
2039 | 2039 |
2040 if (view_) | 2040 if (view_) |
2041 view_->GestureEventAck(event.event.type, ack_result); | 2041 view_->GestureEventAck(event.event, ack_result); |
2042 } | 2042 } |
2043 | 2043 |
2044 void RenderWidgetHostImpl::OnTouchEventAck( | 2044 void RenderWidgetHostImpl::OnTouchEventAck( |
2045 const TouchEventWithLatencyInfo& event, | 2045 const TouchEventWithLatencyInfo& event, |
2046 InputEventAckState ack_result) { | 2046 InputEventAckState ack_result) { |
2047 TouchEventWithLatencyInfo touch_event = event; | 2047 TouchEventWithLatencyInfo touch_event = event; |
2048 // TouchEvent latency does not end when acked since it could later on | 2048 // TouchEvent latency does not end when acked since it could later on |
2049 // become gesture events. | 2049 // become gesture events. |
2050 touch_event.latency.AddLatencyNumber( | 2050 touch_event.latency.AddLatencyNumber( |
2051 ui::INPUT_EVENT_LATENCY_ACKED_TOUCH_COMPONENT, 0, 0); | 2051 ui::INPUT_EVENT_LATENCY_ACKED_TOUCH_COMPONENT, 0, 0); |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2462 continue; | 2462 continue; |
2463 } | 2463 } |
2464 RenderWidgetHostImpl* rwhi = RenderWidgetHostImpl::From(rwh); | 2464 RenderWidgetHostImpl* rwhi = RenderWidgetHostImpl::From(rwh); |
2465 if (rwhi_set.insert(rwhi).second) | 2465 if (rwhi_set.insert(rwhi).second) |
2466 rwhi->FrameSwapped(latency_info); | 2466 rwhi->FrameSwapped(latency_info); |
2467 } | 2467 } |
2468 } | 2468 } |
2469 } | 2469 } |
2470 | 2470 |
2471 } // namespace content | 2471 } // namespace content |
OLD | NEW |