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

Unified Diff: Source/core/events/ErrorEvent.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. 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
« no previous file with comments | « Source/core/events/CustomEvent.cpp ('k') | Source/core/events/Event.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ErrorEvent.cpp
diff --git a/Source/core/events/ErrorEvent.cpp b/Source/core/events/ErrorEvent.cpp
index 7d6c166c54032fa49f0c4750103b0c85fd104507..d83ce299eecef908a9dfe5e0da2360c84152d186 100644
--- a/Source/core/events/ErrorEvent.cpp
+++ b/Source/core/events/ErrorEvent.cpp
@@ -51,7 +51,6 @@ ErrorEvent::ErrorEvent()
, m_columnNumber(0)
, m_world(DOMWrapperWorld::current(v8::Isolate::GetCurrent()))
{
- ScriptWrappable::init(this);
}
ErrorEvent::ErrorEvent(const AtomicString& type, const ErrorEventInit& initializer)
@@ -62,7 +61,6 @@ ErrorEvent::ErrorEvent(const AtomicString& type, const ErrorEventInit& initializ
, m_columnNumber(initializer.colno)
, m_world(DOMWrapperWorld::current(v8::Isolate::GetCurrent()))
{
- ScriptWrappable::init(this);
}
ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world)
@@ -73,7 +71,6 @@ ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned l
, m_columnNumber(columnNumber)
, m_world(world)
{
- ScriptWrappable::init(this);
}
void ErrorEvent::setUnsanitizedMessage(const String& message)
« no previous file with comments | « Source/core/events/CustomEvent.cpp ('k') | Source/core/events/Event.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698