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

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

Issue 1299323005: blink: Add backdrop-filter support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: one more Created 5 years, 4 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 6ace984dcaf16bd391489ca41ad5f3ce20705cda..2a20459a504862eff4c069fba82bea17c0277c94 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -540,6 +540,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyRotate: return 505;
case CSSPropertyScale: return 506;
case CSSPropertyImageOrientation: return 507;
+ case CSSPropertyBackdropFilter: return 508;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
@@ -556,7 +557,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
return 0;
}
-static int maximumCSSSampleId() { return 507; }
+static int maximumCSSSampleId() { return 508; }
void UseCounter::muteForInspector()
{

Powered by Google App Engine
This is Rietveld 408576698