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

Unified Diff: ui/events/blink/event_with_callback.h

Issue 2576013002: Introducing WebCoalescedInputEvent and inclusion in content/common (Closed)
Patch Set: Fix a few DCHECK hits Created 3 years, 11 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: ui/events/blink/event_with_callback.h
diff --git a/ui/events/blink/event_with_callback.h b/ui/events/blink/event_with_callback.h
index 14f6eee4f3b97f1a52d133a544763387427db500..7910c7f07dd2b7ec60d4d9fa9330829143067c67 100644
--- a/ui/events/blink/event_with_callback.h
+++ b/ui/events/blink/event_with_callback.h
@@ -20,20 +20,20 @@ class EventWithCallback {
public:
struct OriginalEventWithCallback {
OriginalEventWithCallback(
- ScopedWebInputEvent event,
+ blink::WebScopedInputEvent event,
const InputHandlerProxy::EventDispositionCallback& callback);
~OriginalEventWithCallback();
- ScopedWebInputEvent event_;
+ blink::WebScopedInputEvent event_;
InputHandlerProxy::EventDispositionCallback callback_;
};
using OriginalEventList = std::list<OriginalEventWithCallback>;
EventWithCallback(
- ScopedWebInputEvent event,
+ blink::WebScopedInputEvent event,
const LatencyInfo& latency,
base::TimeTicks timestamp_now,
const InputHandlerProxy::EventDispositionCallback& callback);
- EventWithCallback(ScopedWebInputEvent event,
+ EventWithCallback(blink::WebScopedInputEvent event,
const LatencyInfo& latency,
base::TimeTicks creation_timestamp,
base::TimeTicks last_coalesced_timestamp,
@@ -61,7 +61,7 @@ class EventWithCallback {
void SetTickClockForTesting(std::unique_ptr<base::TickClock> tick_clock);
- ScopedWebInputEvent event_;
+ blink::WebScopedInputEvent event_;
LatencyInfo latency_;
OriginalEventList original_events_;

Powered by Google App Engine
This is Rietveld 408576698