| Index: Source/core/frame/UseCounter.cpp
|
| diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp
|
| index 7e68504b5c512ffa69e56b6b2280692430112762..77dc2b3bdc65796e98796d365350815dd9619a86 100644
|
| --- a/Source/core/frame/UseCounter.cpp
|
| +++ b/Source/core/frame/UseCounter.cpp
|
| @@ -537,6 +537,9 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
|
| case CSSPropertyScrollSnapPointsY: return 501;
|
| case CSSPropertyScrollSnapCoordinate: return 502;
|
| case CSSPropertyScrollSnapDestination: return 503;
|
| + case CSSPropertyTranslate: return 504;
|
| + case CSSPropertyRotate: return 505;
|
| + case CSSPropertyScale: return 506;
|
|
|
| // 1. Add new features above this line (don't change the assigned numbers of the existing
|
| // items).
|
| @@ -553,7 +556,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
|
| return 0;
|
| }
|
|
|
| -static int maximumCSSSampleId() { return 503; }
|
| +static int maximumCSSSampleId() { return 506; }
|
|
|
| void UseCounter::muteForInspector()
|
| {
|
|
|