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

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: Rebased patch for landing 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 891d71ded2d4667f4e47d2bebe5c2e3682072758..b2bec8fec12f014d1538fc1d08b495bc958eb1f1 100644
--- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
+++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
@@ -543,6 +543,9 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyBackdropFilter: return 508;
case CSSPropertyTextCombineUpright: return 509;
case CSSPropertyTextOrientation: return 510;
+ case CSSPropertyGridColumnGap: return 511;
+ case CSSPropertyGridRowGap: return 512;
+ case CSSPropertyGridGap: return 513;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -559,7 +562,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 510; }
+static int maximumCSSSampleId() { return 513; }
void UseCounter::muteForInspector()
{

Powered by Google App Engine
This is Rietveld 408576698