Index: third_party/WebKit/Source/core/frame/UseCounter.h |
diff --git a/third_party/WebKit/Source/core/frame/UseCounter.h b/third_party/WebKit/Source/core/frame/UseCounter.h |
index 11ebf3cbb33dbf53668a935d050d4124693d2908..d1b30a5cf4aeb44709a7599403e4ea03e2eae943 100644 |
--- a/third_party/WebKit/Source/core/frame/UseCounter.h |
+++ b/third_party/WebKit/Source/core/frame/UseCounter.h |
@@ -991,11 +991,14 @@ public: |
static void countDeprecation(const LocalFrame*, Feature); |
static void countDeprecation(ExecutionContext*, Feature); |
static void countDeprecation(const Document&, Feature); |
+ |
+ static void countDeprecation(LocalFrame*, CSSPropertyID); |
// Use countDeprecationIfNotPrivateScript() instead of countDeprecation() |
// if you don't want to count metrics in private scripts. You should use |
// countDeprecationIfNotPrivateScript() in a binding layer. |
static void countDeprecationIfNotPrivateScript(v8::Isolate*, ExecutionContext*, Feature); |
static String deprecationMessage(Feature); |
+ static String deprecationMessage(CSSPropertyID); |
// Return whether the Feature was previously counted for this document. |
// NOTE: only for use in testing. |