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

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

Issue 943463002: Initial implementation of font-size-adjust (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: UpdatedPatch Created 5 years, 10 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 e19fc1ea169df2d11d3161f96cdc40b3196f86c2..b58a4211a8998f4cdc88d8efd80c4f3b52b30981 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -499,6 +499,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyY: return 462;
case CSSPropertyRx: return 463;
case CSSPropertyRy: return 464;
+ case CSSPropertyFontSizeAdjust: return 465;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -515,7 +516,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 464; }
+static int maximumCSSSampleId() { return 465; }
void UseCounter::muteForInspector()
{

Powered by Google App Engine
This is Rietveld 408576698