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

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

Issue 2856153003: Pass TouchAction bits together with rect in SetTouchEventHandlerRegion (Closed)
Patch Set: rebase + comment Created 3 years, 7 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/WebLayer.h
diff --git a/third_party/WebKit/public/platform/WebLayer.h b/third_party/WebKit/public/platform/WebLayer.h
index 27306b7e6d9fa4b6263c6a16e7951cbb0cbb1726..dc6efa8392b12f1f48e546b9196107ae7ff2c404 100644
--- a/third_party/WebKit/public/platform/WebLayer.h
+++ b/third_party/WebKit/public/platform/WebLayer.h
@@ -38,6 +38,7 @@
#include "WebRect.h"
#include "WebSize.h"
#include "WebString.h"
+#include "WebTouchInfo.h"
#include "WebVector.h"
class SkMatrix44;
@@ -184,7 +185,7 @@ class WebLayer {
virtual void SetNonFastScrollableRegion(const WebVector<WebRect>&) = 0;
virtual WebVector<WebRect> NonFastScrollableRegion() const = 0;
- virtual void SetTouchEventHandlerRegion(const WebVector<WebRect>&) = 0;
+ virtual void SetTouchEventHandlerRegion(const WebVector<WebTouchInfo>&) = 0;
virtual WebVector<WebRect> TouchEventHandlerRegion() const = 0;
virtual void SetIsContainerForFixedPositionLayers(bool) = 0;

Powered by Google App Engine
This is Rietveld 408576698