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

Unified Diff: third_party/WebKit/Source/platform/exported/WebCoalescedInputEvent.cpp

Issue 2844823002: Support Coalesced Touch in ppapi (Closed)
Patch Set: Created 3 years, 8 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: third_party/WebKit/Source/platform/exported/WebCoalescedInputEvent.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebCoalescedInputEvent.cpp b/third_party/WebKit/Source/platform/exported/WebCoalescedInputEvent.cpp
index b765e8790956f67959661a9a9453aeabc78b25ce..541e69e266fe72fb7b3f3ee7ca122ebf1f7218eb 100644
--- a/third_party/WebKit/Source/platform/exported/WebCoalescedInputEvent.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebCoalescedInputEvent.cpp
@@ -92,6 +92,11 @@ WebCoalescedInputEvent::WebCoalescedInputEvent(
coalesced_events_.push_back(MakeWebScopedInputEvent(*coalesced_event));
}
+WebCoalescedInputEvent::WebCoalescedInputEvent(
+ const WebCoalescedInputEvent& event)
+ : WebCoalescedInputEvent(event.Event(),
+ event.GetCoalescedEventsPointers()) {}
+
WebCoalescedInputEvent::WebScopedInputEvent
WebCoalescedInputEvent::MakeWebScopedInputEvent(
const blink::WebInputEvent& event) {

Powered by Google App Engine
This is Rietveld 408576698