| Index: Source/core/page/UseCounter.cpp
|
| diff --git a/Source/core/page/UseCounter.cpp b/Source/core/page/UseCounter.cpp
|
| index 7179c29c39422aae49e38b78132592c5175ba8a0..b8b040bfb535dff3d37b5a357d80c9b6899dd3bb 100644
|
| --- a/Source/core/page/UseCounter.cpp
|
| +++ b/Source/core/page/UseCounter.cpp
|
| @@ -485,6 +485,10 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
|
| case CSSPropertyTouchAction: return 421;
|
| case CSSPropertyGridArea: return 422;
|
| case CSSPropertyGridTemplate: return 423;
|
| + case CSSPropertyNavDown: return 424;
|
| + case CSSPropertyNavLeft: return 425;
|
| + case CSSPropertyNavRight: return 426;
|
| + case CSSPropertyNavUp: return 427;
|
|
|
| // Add new features above this line (don't change the assigned numbers of the existing
|
| // items) and update maximumCSSSampleId() with the new maximum value.
|
| @@ -499,7 +503,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
|
| return 0;
|
| }
|
|
|
| -static int maximumCSSSampleId() { return 423; }
|
| +static int maximumCSSSampleId() { return 427; }
|
|
|
| UseCounter::UseCounter()
|
| {
|
|
|