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

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: ExpectedResultForLinuxIsUpdated 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 c7d01ec616a28ce69e55602bd32c1776ed2416f1..01258c0b8fb4c9e9c940aed387937882444feef9 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -497,6 +497,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyMotion: return 460;
case CSSPropertyX: return 461;
case CSSPropertyY: return 462;
+ case CSSPropertyFontSizeAdjust: return 463;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -513,7 +514,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 462; }
+static int maximumCSSSampleId() { return 463; }
void UseCounter::muteForInspector()
{

Powered by Google App Engine
This is Rietveld 408576698