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

Unified Diff: public/web/WebInputEvent.h

Issue 1308313005: Modify gesture event types for WebView-tag scroll bubbling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Cleanup asserts. 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
« no previous file with comments | « Source/web/tests/WebInputEventConversionTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebInputEvent.h
diff --git a/public/web/WebInputEvent.h b/public/web/WebInputEvent.h
index 8751143585fef569c71372998aa575a9937d0101..234d71479deed9d4dc26d78a0ecdb5832b2c85eb 100644
--- a/public/web/WebInputEvent.h
+++ b/public/web/WebInputEvent.h
@@ -373,6 +373,8 @@ public:
float accelerationRatioX;
float accelerationRatioY;
+ int resendingPluginId;
Rick Byers 2015/09/16 14:16:02 Nit: please add a brief comment here describing th
+
Phase phase;
Phase momentumPhase;
@@ -412,6 +414,7 @@ public:
, wheelTicksY(0.0f)
, accelerationRatioX(1.0f)
, accelerationRatioY(1.0f)
+ , resendingPluginId(-1)
, phase(PhaseNone)
, momentumPhase(PhaseNone)
, canRubberbandLeft(true)
@@ -433,6 +436,7 @@ public:
int globalX;
int globalY;
WebGestureDevice sourceDevice;
+ int resendingPluginId;
union {
// Tap information must be set for GestureTap, GestureTapUnconfirmed,
@@ -514,6 +518,7 @@ public:
, y(0)
, globalX(0)
, globalY(0)
+ , resendingPluginId(-1)
{
memset(&data, 0, sizeof(data));
}
« no previous file with comments | « Source/web/tests/WebInputEventConversionTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698