Index: Source/core/frame/UseCounter.cpp |
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp |
index ecde143f1e07f91792c284534a202986c2ce3e10..5a9de4d1e86d2467e7626e94a719d49e50916235 100644 |
--- a/Source/core/frame/UseCounter.cpp |
+++ b/Source/core/frame/UseCounter.cpp |
@@ -853,6 +853,8 @@ String UseCounter::deprecationMessage(Feature feature) |
case SVGSVGElementUnsuspendRedrawAll: |
return "'SVGSVGElement.unsuspendRedrawAll()' is deprecated, please do not use it. It is a no-op, as per SVG2 (https://svgwg.org/svg2-draft/struct.html#__svg__SVGSVGElement__unsuspendRedrawAll)."; |
+ case ServiceWorkerClientsGetAll: |
+ return "Clients.getAll() is deprecated. Please use 'matchAll' instead"; |
Kunihiko Sakamoto
2015/02/10 01:30:39
Nit: add a period at the end of sentence.
|
// Features that aren't deprecated don't have a deprecation message. |
default: |
return String(); |