#ifndef CONTENT_PORT_BROWSER_EVENT_WITH_LATENCY_INFO_H_
#define CONTENT_PORT_BROWSER_EVENT_WITH_LATENCY_INFO_H_
#include "ui/events/latency_info.h"
#include "content/common/input/web_input_event_traits.h"
namespace blink {
class WebGestureEvent;
class WebMouseEvent;
class WebMouseWheelEvent;
class WebTouchEvent;
}
namespace content {
template <typename T>
class EventWithLatencyInfo {
public:
T event;
ui::LatencyInfo latency;
EventWithLatencyInfo(const T& e, const ui::LatencyInfo& l)
: event(e), latency(l) {}
EventWithLatencyInfo() {}
bool CanCoalesceWith(const EventWithLatencyInfo& other)
const WARN_UNUSED_RESULT {
return WebInputEventTraits::CanCoalesce(other.event, event);
}
void CoalesceWith(const EventWithLatencyInfo& other) {
WebInputEventTraits::Coalesce(other.event, &event);
if (other.latency.trace_id >= 0 &&
(latency.trace_id < 0 || other.latency.trace_id < latency.trace_id))
latency = other.latency;
}
};
typedef EventWithLatencyInfo<blink::WebGestureEvent>
GestureEventWithLatencyInfo;
typedef EventWithLatencyInfo<blink::WebMouseWheelEvent>
MouseWheelEventWithLatencyInfo;
typedef EventWithLatencyInfo<blink::WebMouseEvent>
MouseEventWithLatencyInfo;
typedef EventWithLatencyInfo<blink::WebTouchEvent>
TouchEventWithLatencyInfo;
}
#endif