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

Unified Diff: Source/core/dom/Attr.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/dom/Attr.cpp
diff --git a/Source/core/dom/Attr.cpp b/Source/core/dom/Attr.cpp
index a5341f0d5ca7436f365daaf648aad2348a82a792..29e647d15692feec373ea965e375b735b9404af7 100644
--- a/Source/core/dom/Attr.cpp
+++ b/Source/core/dom/Attr.cpp
@@ -43,7 +43,6 @@ Attr::Attr(Element& element, const QualifiedName& name)
, m_name(name)
, m_ignoreChildrenChanged(0)
{
- ScriptWrappable::init(this);
}
Attr::Attr(Document& document, const QualifiedName& name, const AtomicString& standaloneValue)
@@ -53,7 +52,6 @@ Attr::Attr(Document& document, const QualifiedName& name, const AtomicString& st
, m_standaloneValueOrAttachedLocalName(standaloneValue)
, m_ignoreChildrenChanged(0)
{
- ScriptWrappable::init(this);
}
PassRefPtrWillBeRawPtr<Attr> Attr::create(Element& element, const QualifiedName& name)

Powered by Google App Engine
This is Rietveld 408576698