Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: content/common/input/event_with_latency_info.h

Issue 2111593003: Decouple EventWithLatencyInfo from WebInputEventTraits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lint, iwyu Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/input/event_with_latency_info.h
diff --git a/content/common/input/event_with_latency_info.h b/content/common/input/event_with_latency_info.h
index 24742a3baeb0f57f6755724c5cd33ba93272c6b3..cdfdb6ea1995309b9ee4140d9621a3772853712f 100644
--- a/content/common/input/event_with_latency_info.h
+++ b/content/common/input/event_with_latency_info.h
@@ -5,18 +5,34 @@
#ifndef CONTENT_COMMON_INPUT_EVENT_WITH_LATENCY_INFO_H_
#define CONTENT_COMMON_INPUT_EVENT_WITH_LATENCY_INFO_H_
+#include "base/compiler_specific.h"
tdresser 2016/06/30 14:16:39 Are we using this?
tapted 2016/07/01 02:53:45 Yep - for WARN_UNUSED_RESULT in the original code
+#include "base/logging.h"
+#include "content/common/content_export.h"
+#include "third_party/WebKit/public/web/WebInputEvent.h"
#include "ui/events/latency_info.h"
-#include "content/common/input/web_input_event_traits.h"
+namespace content {
+namespace internal {
-namespace blink {
-class WebGestureEvent;
-class WebMouseEvent;
-class WebMouseWheelEvent;
-class WebTouchEvent;
-}
+bool CONTENT_EXPORT CanCoalesce(const blink::WebMouseEvent& event_to_coalesce,
+ const blink::WebMouseEvent& event);
+void CONTENT_EXPORT Coalesce(const blink::WebMouseEvent& event_to_coalesce,
+ blink::WebMouseEvent* event);
+bool CONTENT_EXPORT
+CanCoalesce(const blink::WebMouseWheelEvent& event_to_coalesce,
+ const blink::WebMouseWheelEvent& event);
+void CONTENT_EXPORT Coalesce(const blink::WebMouseWheelEvent& event_to_coalesce,
+ blink::WebMouseWheelEvent* event);
+bool CONTENT_EXPORT CanCoalesce(const blink::WebTouchEvent& event_to_coalesce,
+ const blink::WebTouchEvent& event);
+void CONTENT_EXPORT Coalesce(const blink::WebTouchEvent& event_to_coalesce,
+ blink::WebTouchEvent* event);
+bool CONTENT_EXPORT CanCoalesce(const blink::WebGestureEvent& event_to_coalesce,
+ const blink::WebGestureEvent& event);
+void CONTENT_EXPORT Coalesce(const blink::WebGestureEvent& event_to_coalesce,
+ blink::WebGestureEvent* event);
-namespace content {
+} // namespace internal
tapted 2016/06/30 12:13:45 This wasn't my first choice.. In http://crrev.com/
template <typename T>
class EventWithLatencyInfo {
@@ -33,14 +49,26 @@ class EventWithLatencyInfo {
bool CanCoalesceWith(const EventWithLatencyInfo& other)
const WARN_UNUSED_RESULT {
- return WebInputEventTraits::CanCoalesce(other.event, event);
+ if (other.event.type != event.type)
+ return false;
+
+ DCHECK_EQ(sizeof(T), event.size);
+ DCHECK_EQ(sizeof(T), other.event.size);
+
+ return internal::CanCoalesce(other.event, event);
}
void CoalesceWith(const EventWithLatencyInfo& other) {
// |other| should be a newer event than |this|.
if (other.latency.trace_id() >= 0 && latency.trace_id() >= 0)
DCHECK_GT(other.latency.trace_id(), latency.trace_id());
- WebInputEventTraits::Coalesce(other.event, &event);
+
+ // New events get coalesced into older events, and the newer timestamp
+ // should always be preserved.
+ const double time_stamp_seconds = other.event.timeStampSeconds;
+ internal::Coalesce(other.event, &event);
+ event.timeStampSeconds = time_stamp_seconds;
+
// When coalescing two input events, we keep the oldest LatencyInfo
// for Telemetry latency tests, since it will represent the longest
// latency.

Powered by Google App Engine
This is Rietveld 408576698