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

Unified Diff: Source/platform/PlatformTouchEvent.h

Issue 920523003: Plumb WebTouchEvent::causesScrollingIfUncanceled to TouchEvent and (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/core/page/EventHandler.cpp ('k') | Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/PlatformTouchEvent.h
diff --git a/Source/platform/PlatformTouchEvent.h b/Source/platform/PlatformTouchEvent.h
index f5f0281558199e76d7b6035790ad96253c552043..be75aa6595a71e95f2eb069d8510c3f78fddcbda 100644
--- a/Source/platform/PlatformTouchEvent.h
+++ b/Source/platform/PlatformTouchEvent.h
@@ -37,10 +37,12 @@ public:
const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
bool cancelable() const { return m_cancelable; }
+ bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncanceled; }
protected:
Vector<PlatformTouchPoint> m_touchPoints;
bool m_cancelable;
+ bool m_causesScrollingIfUncanceled;
};
}
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698