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

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

Issue 18532004: Implement 'grid-template' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Same change, forgot to update css-properties-as-js-properties.html result Created 7 years, 5 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: Source/core/page/UseCounter.cpp
diff --git a/Source/core/page/UseCounter.cpp b/Source/core/page/UseCounter.cpp
index 5ec1faa4cfd023c6fc306381c649f91ab15d18bb..33f1f442699624b722bba1fd76c7487170f70bde 100644
--- a/Source/core/page/UseCounter.cpp
+++ b/Source/core/page/UseCounter.cpp
@@ -488,6 +488,7 @@ static int mapCSSPropertyIdToCSSSampleId(int id)
case CSSPropertyMixBlendMode: return 420;
case CSSPropertyTouchAction: return 421;
case CSSPropertyGridArea: return 422;
+ case CSSPropertyGridTemplate: return 423;
// Add new features above this line (don't change the assigned numbers of the existing
// items) and update maximumCSSSampleId() with the new maximum value.
@@ -502,7 +503,7 @@ static int mapCSSPropertyIdToCSSSampleId(int id)
return 0;
}
-static int maximumCSSSampleId() { return 422; }
+static int maximumCSSSampleId() { return 423; }
UseCounter::UseCounter()
{

Powered by Google App Engine
This is Rietveld 408576698