Chromium Code Reviews| 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 7ab2b2d75b58041c5c21566989a9a993a33c8d87..c0c46ec1822dff5914a15bc0055febcb9394a566 100644 |
| --- a/third_party/WebKit/Source/core/frame/UseCounter.cpp |
| +++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp |
| @@ -565,6 +565,11 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id) |
| case CSSPropertyColumnWidth: return 530; |
| case CSSPropertyColumns: return 531; |
| case CSSPropertyApplyAtRule: return 532; |
| + case CSSPropertyNavDown: return 533; |
| + case CSSPropertyNavLeft: return 534; |
| + case CSSPropertyNavRight: return 535; |
| + case CSSPropertyNavUp: return 536; |
| + |
|
fs
2016/05/18 15:55:05
Drop dangling vspace.
|
| // 1. Add new features above this line (don't change the assigned numbers of the existing |
| // items). |
| @@ -581,7 +586,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id) |
| return 0; |
| } |
| -static int maximumCSSSampleId() { return 532; } |
| +static int maximumCSSSampleId() { return 536; } |
| static EnumerationHistogram& featureObserverHistogram() |
| { |