Index: Source/core/frame/UseCounter.cpp |
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp |
index decf0a1c79281adf204f0eacade3e89615397dd2..23bfce198cbaac2cee62fb4002b3d3a08cf3fd40 100644 |
--- a/Source/core/frame/UseCounter.cpp |
+++ b/Source/core/frame/UseCounter.cpp |
@@ -509,6 +509,10 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id) |
case CSSPropertyBackfaceVisibility: return 451; |
case CSSPropertyGridTemplate: return 452; |
case CSSPropertyGrid: return 453; |
+ case CSSPropertyNavDown: return 454; |
+ case CSSPropertyNavLeft: return 455; |
+ case CSSPropertyNavRight: return 456; |
+ 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. |
@@ -528,7 +532,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id) |
return 0; |
} |
-static int maximumCSSSampleId() { return 451; } |
+static int maximumCSSSampleId() { return 457; } |
void UseCounter::muteForInspector() |
{ |