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

Unified Diff: Source/core/page/UseCounter.cpp

Issue 15748002: Initial support for experimental touch-action CSS feature (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove unnecessary CSSParserContext change Created 7 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 | « Source/core/page/RuntimeEnabledFeatures.in ('k') | Source/core/rendering/style/RenderStyle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/UseCounter.cpp
diff --git a/Source/core/page/UseCounter.cpp b/Source/core/page/UseCounter.cpp
index f0d62ee6e5c1d0f7a018ad450fcf4c69e80c0d49..7377789dc7e06b4b19beb3fe7cdc238a1bc215b1 100644
--- a/Source/core/page/UseCounter.cpp
+++ b/Source/core/page/UseCounter.cpp
@@ -490,6 +490,7 @@ static int mapCSSPropertyIdToCSSSampleId(int id)
case CSSPropertyWebkitGridAutoColumns: return 418;
case CSSPropertyBackgroundBlendMode: return 419;
case CSSPropertyMixBlendMode: return 420;
+ case CSSPropertyTouchAction: return 421;
// Add new features above this line (don't change the assigned numbers of the existing
// items) and update maximumCSSSampleId() with the new maximum value.
@@ -504,7 +505,7 @@ static int mapCSSPropertyIdToCSSSampleId(int id)
return 0;
}
-static int maximumCSSSampleId() { return 420; }
+static int maximumCSSSampleId() { return 421; }
UseCounter::UseCounter()
{
« no previous file with comments | « Source/core/page/RuntimeEnabledFeatures.in ('k') | Source/core/rendering/style/RenderStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698