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

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: Fixed compilation error in mac and crash in linux/window that were reported by trybots. Created 6 years, 3 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 d5efd2996eefbec428364cabe4e2b475c345a49d..34a4c16b1178e8aceef8c452817818839f406b3b 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -499,6 +499,10 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyGrid: return 453;
case CSSPropertyAll: return 454;
case CSSPropertyJustifyItems: return 455;
+ case CSSPropertyNavDown: return 456;
+ case CSSPropertyNavLeft: return 457;
+ case CSSPropertyNavRight: return 458;
+ case CSSPropertyNavUp: return 459;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -521,7 +525,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 455; }
+static int maximumCSSSampleId() { return 459; }
void UseCounter::muteForInspector()
{

Powered by Google App Engine
This is Rietveld 408576698