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

Unified Diff: Source/web/WebInputEvent.cpp

Issue 1308313005: Modify gesture event types for WebView-tag scroll bubbling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use -1 instead of 0 for null plugin id. Created 5 years, 3 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: Source/web/WebInputEvent.cpp
diff --git a/Source/web/WebInputEvent.cpp b/Source/web/WebInputEvent.cpp
index e1f7086b0a3b50caf0d9712206e9b7c77ed20b8d..a6632b14d8862b7a03afb30089a4d388351151a1 100644
--- a/Source/web/WebInputEvent.cpp
+++ b/Source/web/WebInputEvent.cpp
@@ -51,11 +51,11 @@ struct SameSizeAsWebMouseEvent : public SameSizeAsWebInputEvent {
};
struct SameSizeAsWebMouseWheelEvent : public SameSizeAsWebMouseEvent {
- int mousewheelData[11];
+ int mousewheelData[12];
};
struct SameSizeAsWebGestureEvent : public SameSizeAsWebInputEvent {
- int gestureData[10];
+ int gestureData[11];
};
struct SameSizeAsWebTouchEvent : public SameSizeAsWebInputEvent {

Powered by Google App Engine
This is Rietveld 408576698