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

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

Issue 1192983003: CSS Custom Properties (Variables) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Whoops, the forward declaration just needed to be moved. Created 5 years, 2 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 891d71ded2d4667f4e47d2bebe5c2e3682072758..1e5156f5afe0b6f5bb058865b56770297630ea37 100644
--- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
+++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
@@ -543,6 +543,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyBackdropFilter: return 508;
case CSSPropertyTextCombineUpright: return 509;
case CSSPropertyTextOrientation: return 510;
+ case CSSPropertyVariable: return 511;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -559,7 +560,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 510; }
+static int maximumCSSSampleId() { return 511; }
void UseCounter::muteForInspector()
{

Powered by Google App Engine
This is Rietveld 408576698