| 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 8bded686186fd2fbe1b8b4ce931fd63b0a22856b..5056988118acfde84fc77e5c234131fbd425d076 100644
|
| --- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
|
| @@ -45,7 +45,7 @@ int totalPagesMeasuredCSSSampleId() {
|
| }
|
|
|
| // Make sure update_use_counter_css.py was run which updates histograms.xml.
|
| -constexpr int kMaximumCSSSampleId = 549;
|
| +constexpr int kMaximumCSSSampleId = 555;
|
|
|
| } // namespace
|
|
|
| @@ -1066,6 +1066,18 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(
|
| return 548;
|
| case CSSPropertyFontVariationSettings:
|
| return 549;
|
| + case CSSPropertyInlineSize:
|
| + return 550;
|
| + case CSSPropertyBlockSize:
|
| + return 551;
|
| + case CSSPropertyMinInlineSize:
|
| + return 552;
|
| + case CSSPropertyMinBlockSize:
|
| + return 553;
|
| + case CSSPropertyMaxInlineSize:
|
| + return 554;
|
| + case CSSPropertyMaxBlockSize:
|
| + return 555;
|
| // 1. Add new features above this line (don't change the assigned numbers of
|
| // the existing items).
|
| // 2. Update kMaximumCSSSampleId with the new maximum value.
|
|
|