| 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 2f674fe1d8b51777dd14380e8faed641b7110341..d4efb7190e41abecfdd45a390f5a42555777e302 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 = 547;
|
| +constexpr int kMaximumCSSSampleId = 548;
|
|
|
| } // namespace
|
|
|
| @@ -1050,9 +1050,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(
|
| return 540;
|
| case CSSPropertyOffsetPath:
|
| return 541;
|
| - case CSSPropertyOffsetRotate:
|
| case CSSPropertyOffsetRotation:
|
| - // TODO(ericwilligers): Distinct use counter for CSSPropertyOffsetRotate.
|
| return 542;
|
| case CSSPropertyOffset:
|
| return 543;
|
| @@ -1064,6 +1062,8 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(
|
| return 546;
|
| case CSSPropertyCaretColor:
|
| return 547;
|
| + case CSSPropertyOffsetRotate:
|
| + return 548;
|
| // 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.
|
|
|