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

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

Issue 1309513008: [css-grid] Implement grid gutters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changes after rune's review Created 5 years, 2 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: third_party/WebKit/Source/core/frame/UseCounter.cpp
diff --git a/third_party/WebKit/Source/core/frame/UseCounter.cpp b/third_party/WebKit/Source/core/frame/UseCounter.cpp
index 044286cd1cbc02e68ee8a5ee91e5e65affb630ff..b42629af29cee32e70934a7b0c2f0ed9eb60642c 100644
--- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
+++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
@@ -541,6 +541,9 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyScale: return 506;
case CSSPropertyImageOrientation: return 507;
case CSSPropertyBackdropFilter: return 508;
+ case CSSPropertyGridColumnGap: return 509;
+ case CSSPropertyGridRowGap: return 510;
+ case CSSPropertyGridGap: return 511;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -557,7 +560,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 508; }
+static int maximumCSSSampleId() { return 511; }
void UseCounter::muteForInspector()
{

Powered by Google App Engine
This is Rietveld 408576698