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

Unified Diff: Source/core/svg/SVGScriptElement.cpp

Issue 412483007: Add explicit destructors to DOM classes containing smart pointers to incomplete types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « Source/core/svg/SVGScriptElement.h ('k') | Source/platform/audio/AudioDSPKernelProcessor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGScriptElement.cpp
diff --git a/Source/core/svg/SVGScriptElement.cpp b/Source/core/svg/SVGScriptElement.cpp
index cdd584ca6700ac575f614d2f482970c27bfd9f6a..a9508b0147234746f1f452008b3c90c4dc792a6f 100644
--- a/Source/core/svg/SVGScriptElement.cpp
+++ b/Source/core/svg/SVGScriptElement.cpp
@@ -40,6 +40,10 @@ inline SVGScriptElement::SVGScriptElement(Document& document, bool wasInsertedBy
ScriptWrappable::init(this);
}
+SVGScriptElement::~SVGScriptElement()
+{
+}
+
PassRefPtrWillBeRawPtr<SVGScriptElement> SVGScriptElement::create(Document& document, bool insertedByParser)
{
return adoptRefWillBeNoop(new SVGScriptElement(document, insertedByParser, false));
« no previous file with comments | « Source/core/svg/SVGScriptElement.h ('k') | Source/platform/audio/AudioDSPKernelProcessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698