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

Unified Diff: third_party/WebKit/public/platform/WebPointerEvent.h

Issue 2973963003: Release mouse pointer capture when it starts drag (Closed)
Patch Set: Remove is_cancel from parameters Created 3 years, 5 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/public/platform/WebPointerEvent.h
diff --git a/third_party/WebKit/public/platform/WebPointerEvent.h b/third_party/WebKit/public/platform/WebPointerEvent.h
index ef0606197dea30d59862ad7b1b395cc847b01e68..9a5d218ce84a614e32365d46ef8dedf0a71245d8 100644
--- a/third_party/WebKit/public/platform/WebPointerEvent.h
+++ b/third_party/WebKit/public/platform/WebPointerEvent.h
@@ -6,6 +6,7 @@
#define WebPointerEvent_h
#include "WebInputEvent.h"
+#include "WebMouseEvent.h"
#include "WebPointerProperties.h"
#include "WebTouchEvent.h"
@@ -26,6 +27,8 @@ class WebPointerEvent : public WebInputEvent, public WebPointerProperties {
: WebInputEvent(sizeof(WebPointerEvent)), WebPointerProperties(0) {}
BLINK_PLATFORM_EXPORT WebPointerEvent(const WebTouchEvent&,
const WebTouchPoint&);
+ BLINK_PLATFORM_EXPORT WebPointerEvent(WebInputEvent::Type,
+ const WebMouseEvent&);
// TODO(crbug.com/736014): We need a clarified definition of the scale and
// the coordinate space on these attributes.

Powered by Google App Engine
This is Rietveld 408576698