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

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

Issue 2917713002: Teach input_handler_proxy about once callbacks. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « content/renderer/input/input_handler_manager.cc ('k') | ui/events/blink/event_with_callback.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f56c63db45860d0e2ad278940622953bc9b475e8..774b8e86de489ffafc0a2f143db90a2cb4160a46 100644
--- a/ui/events/blink/event_with_callback.h
+++ b/ui/events/blink/event_with_callback.h
@@ -21,18 +21,17 @@ class EventWithCallback {
struct OriginalEventWithCallback {
OriginalEventWithCallback(
WebScopedInputEvent event,
- const InputHandlerProxy::EventDispositionCallback& callback);
+ InputHandlerProxy::EventDispositionCallback callback);
~OriginalEventWithCallback();
WebScopedInputEvent event_;
InputHandlerProxy::EventDispositionCallback callback_;
};
using OriginalEventList = std::list<OriginalEventWithCallback>;
- EventWithCallback(
- WebScopedInputEvent event,
- const LatencyInfo& latency,
- base::TimeTicks timestamp_now,
- const InputHandlerProxy::EventDispositionCallback& callback);
+ EventWithCallback(WebScopedInputEvent event,
+ const LatencyInfo& latency,
+ base::TimeTicks timestamp_now,
+ InputHandlerProxy::EventDispositionCallback callback);
EventWithCallback(WebScopedInputEvent event,
const LatencyInfo& latency,
base::TimeTicks creation_timestamp,
« no previous file with comments | « content/renderer/input/input_handler_manager.cc ('k') | ui/events/blink/event_with_callback.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698