| 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 e803c8551ac4a10291fa4940c9d952cafb08b875..4b57951f981ed813bee4fd9420afa3ebba38dcbf 100644
|
| --- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
|
| @@ -46,7 +46,7 @@ int totalPagesMeasuredCSSSampleId() {
|
| }
|
|
|
| // Make sure update_use_counter_css.py was run which updates histograms.xml.
|
| -constexpr int kMaximumCSSSampleId = 560;
|
| +constexpr int kMaximumCSSSampleId = 563;
|
|
|
| } // namespace
|
|
|
| @@ -1084,6 +1084,12 @@ int UseCounter::MapCSSPropertyIdToCSSSampleIdForHistogram(
|
| return 559;
|
| case CSSPropertyPlaceSelf:
|
| return 560;
|
| + case CSSPropertyScrollBoundaryBehavior:
|
| + return 561;
|
| + case CSSPropertyScrollBoundaryBehaviorX:
|
| + return 562;
|
| + case CSSPropertyScrollBoundaryBehaviorY:
|
| + return 563;
|
| // 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.
|
|
|