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

Unified Diff: third_party/WebKit/Source/web/WebInputEventConversion.h

Issue 2479123003: WIP Add getCoalescedEvents API using vector of WebInputEvents (Closed)
Patch Set: Created 4 years, 1 month 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/web/WebInputEventConversion.h
diff --git a/third_party/WebKit/Source/web/WebInputEventConversion.h b/third_party/WebKit/Source/web/WebInputEventConversion.h
index dc7b56dc074ed627a16a78d8af9899dab489e679..0a841f4117b6589241a41798a91d07d6bd7e93ba 100644
--- a/third_party/WebKit/Source/web/WebInputEventConversion.h
+++ b/third_party/WebKit/Source/web/WebInputEventConversion.h
@@ -135,6 +135,13 @@ class WEB_EXPORT WebGestureEventBuilder
WebGestureEventBuilder(const LayoutItem, const GestureEvent&);
};
+Vector<PlatformMouseEvent> createPlatformMouseEventVector(
+ Widget*,
+ const std::vector<const WebInputEvent*>&);
+Vector<PlatformTouchEvent> createPlatformTouchEventVector(
+ Widget*,
+ const std::vector<const WebInputEvent*>&);
+
} // namespace blink
#endif

Powered by Google App Engine
This is Rietveld 408576698