Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/xml/DOMParser.h

Issue 1922763003: Remove unnecessary uses of GarbageCollectedFinalized<>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/xml/DOMParser.h
diff --git a/third_party/WebKit/Source/core/xml/DOMParser.h b/third_party/WebKit/Source/core/xml/DOMParser.h
index c0a839e190d0c1f8400c09978b68b0611cb59667..27985b5088beefc67eedc378e7c47237214cccb7 100644
--- a/third_party/WebKit/Source/core/xml/DOMParser.h
+++ b/third_party/WebKit/Source/core/xml/DOMParser.h
@@ -27,7 +27,7 @@ namespace blink {
class Document;
-class DOMParser final : public GarbageCollectedFinalized<DOMParser>, public ScriptWrappable {
+class DOMParser final : public GarbageCollected<DOMParser>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static DOMParser* create(Document& document)

Powered by Google App Engine