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

Unified Diff: Source/core/css/CSSPrimitiveValueMappings.h

Issue 1137483003: Implement direction-specific touch-action values (blink side) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix minor nit from patch set 1 Created 5 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
« no previous file with comments | « LayoutTests/fast/css/touch-action-parsing-expected.txt ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSPrimitiveValueMappings.h
diff --git a/Source/core/css/CSSPrimitiveValueMappings.h b/Source/core/css/CSSPrimitiveValueMappings.h
index 36bf49be2ccb79ccf64923b47ca176ad12132182..f3b1abe27f651c8e2c088811fabf8f97f6435a6a 100644
--- a/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/Source/core/css/CSSPrimitiveValueMappings.h
@@ -4352,8 +4352,16 @@ template<> inline CSSPrimitiveValue::operator TouchAction() const
return TouchActionNone;
case CSSValueAuto:
return TouchActionAuto;
+ case CSSValuePanLeft:
+ return TouchActionPanLeft;
+ case CSSValuePanRight:
+ return TouchActionPanRight;
case CSSValuePanX:
return TouchActionPanX;
+ case CSSValuePanUp:
+ return TouchActionPanUp;
+ case CSSValuePanDown:
+ return TouchActionPanDown;
case CSSValuePanY:
return TouchActionPanY;
case CSSValueManipulation:
« no previous file with comments | « LayoutTests/fast/css/touch-action-parsing-expected.txt ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698