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
3 // found in the LICENSE file.
5 #ifndef CONTENT_PORT_BROWSER_EVENT_WITH_LATENCY_INFO_H_
6 #define CONTENT_PORT_BROWSER_EVENT_WITH_LATENCY_INFO_H_
8 #include "ui/events/latency_info.h"
10 #include "content/common/input/web_input_event_traits.h"
13 class WebGestureEvent
;
15 class WebMouseWheelEvent
;
22 class EventWithLatencyInfo
{
25 ui::LatencyInfo latency
;
27 EventWithLatencyInfo(const T
& e
, const ui::LatencyInfo
& l
)
28 : event(e
), latency(l
) {}
30 EventWithLatencyInfo() {}
32 bool CanCoalesceWith(const EventWithLatencyInfo
& other
)
33 const WARN_UNUSED_RESULT
{
34 return WebInputEventTraits::CanCoalesce(other
.event
, event
);
37 void CoalesceWith(const EventWithLatencyInfo
& other
) {
38 WebInputEventTraits::Coalesce(other
.event
, &event
);
39 // When coalescing two input events, we keep the oldest LatencyInfo
40 // for Telemetry latency test since it will represent the longest
42 if (other
.latency
.trace_id
>= 0 &&
43 (latency
.trace_id
< 0 || other
.latency
.trace_id
< latency
.trace_id
))
44 latency
= other
.latency
;
48 typedef EventWithLatencyInfo
<blink::WebGestureEvent
>
49 GestureEventWithLatencyInfo
;
50 typedef EventWithLatencyInfo
<blink::WebMouseWheelEvent
>
51 MouseWheelEventWithLatencyInfo
;
52 typedef EventWithLatencyInfo
<blink::WebMouseEvent
>
53 MouseEventWithLatencyInfo
;
54 typedef EventWithLatencyInfo
<blink::WebTouchEvent
>
55 TouchEventWithLatencyInfo
;
57 } // namespace content
59 #endif // CONTENT_PORT_BROWSER_EVENT_WITH_LATENCY_INFO_H_