| 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()
|
| {
|
|
|