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

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

Issue 333423005: [CSS Grid Layout] Implement 'justify-items' parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch rebased. Created 6 years, 6 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/frame/UseCounter.cpp
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp
index b2cb53a0be10258c924c0866f7ebeb9935b880d4..d03e54db7e4e17cdcc783e30bc65f1417501c5b7 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -511,6 +511,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyGridTemplate: return 452;
case CSSPropertyGrid: return 453;
case CSSPropertyAll: return 454;
+ case CSSPropertyJustifyItems: return 455;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -533,7 +534,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 454; }
+static int maximumCSSSampleId() { return 455; }
void UseCounter::muteForInspector()
{

Powered by Google App Engine
This is Rietveld 408576698