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

Unified Diff: public/web/WebTouchAction.h

Issue 134153016: add 'manipulation' support to CSS touch-action parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase to trunk Created 6 years, 9 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: public/web/WebTouchAction.h
diff --git a/public/web/WebTouchAction.h b/public/web/WebTouchAction.h
index 0c793d0916bfe4a38137d2980324078831b5d53a..2643199d264f4ecdacb03c77f223c78089fe3a64 100644
--- a/public/web/WebTouchAction.h
+++ b/public/web/WebTouchAction.h
@@ -38,7 +38,8 @@ enum WebTouchAction {
WebTouchActionAuto = 0x0,
WebTouchActionNone = 0x1,
WebTouchActionPanX = 0x2,
- WebTouchActionPanY = 0x4
+ WebTouchActionPanY = 0x4,
+ WebTouchActionPinchZoom = 0x8,
};
inline WebTouchAction operator| (WebTouchAction a, WebTouchAction b) { return WebTouchAction(int(a) | int(b)); }
inline WebTouchAction& operator|= (WebTouchAction& a, WebTouchAction b) { return a = a | b; }
« Source/core/css/CSSValueKeywords.in ('K') | « Source/web/tests/data/touch-action-tests.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698