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

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

Issue 1919813002: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: 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()
{

Powered by Google App Engine
This is Rietveld 408576698