Chromium Code Reviews| Index: Source/core/frame/UseCounter.cpp |
| diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp |
| index 468874d673aa4d83614e7d6fa904015d99d4ebf7..37775641fab189e8f6e8d735cd4f715e2756972d 100644 |
| --- a/Source/core/frame/UseCounter.cpp |
| +++ b/Source/core/frame/UseCounter.cpp |
| @@ -507,6 +507,10 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id) |
| case CSSPropertyPerspectiveOrigin: return 450; |
| case CSSPropertyBackfaceVisibility: return 451; |
| case CSSPropertyGridTemplate: return 452; |
| + case CSSPropertyNavDown: return 453; |
| + case CSSPropertyNavLeft: return 454; |
| + case CSSPropertyNavRight: return 456; |
|
fs
2014/04/14 12:32:01
Why leave out 455?
Krzysztof Olczyk
2014/04/17 13:48:40
Done.
|
| + case CSSPropertyNavUp: return 457; |
| // Add new features above this line (don't change the assigned numbers of the existing |
| // items) and update maximumCSSSampleId() with the new maximum value. |
| @@ -526,7 +530,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id) |
| return 0; |
| } |
| -static int maximumCSSSampleId() { return 451; } |
| +static int maximumCSSSampleId() { return 457; } |
| void UseCounter::muteForInspector() |
| { |