Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(932)

Unified Diff: Source/core/frame/UseCounter.cpp

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Applied code review suggestions. Also rebased. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()
{

Powered by Google App Engine
This is Rietveld 408576698