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

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

Issue 723373006: Add CSS parsing support for the scroll-blocks-on property (in place of touch-action-delay) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Apply CR feedback Created 6 years, 1 month 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/css/parser/CSSPropertyParser.cpp ('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/frame/UseCounter.cpp
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp
index 4cd5fe1aa703a2e855b5e00312f9e79938fd5f50..5ee041db67e3f2863794f3db06eea180304154a3 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -484,7 +484,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyShapeImageThreshold: return 439;
case CSSPropertyColumnFill: return 440;
case CSSPropertyTextJustify: return 441;
- case CSSPropertyTouchActionDelay: return 442;
+ // CSSPropertyTouchActionDelay was 442
case CSSPropertyJustifySelf: return 443;
case CSSPropertyScrollBehavior: return 444;
case CSSPropertyWillChange: return 445;
@@ -498,6 +498,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyGrid: return 453;
case CSSPropertyAll: return 454;
case CSSPropertyJustifyItems: return 455;
+ case CSSPropertyScrollBlocksOn: return 456;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -514,7 +515,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 455; }
+static int maximumCSSSampleId() { return 456; }
void UseCounter::muteForInspector()
{
« no previous file with comments | « Source/core/css/parser/CSSPropertyParser.cpp ('k') | Source/core/rendering/style/RenderStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698