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

Unified Diff: sky/engine/core/events/HashChangeEvent.h

Issue 706123005: Remove nop ScriptWrappable::init calls (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/core/events/FocusEvent.cpp ('k') | sky/engine/core/events/KeyboardEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/events/HashChangeEvent.h
diff --git a/sky/engine/core/events/HashChangeEvent.h b/sky/engine/core/events/HashChangeEvent.h
index d50a392e84bd3ee09fb9be4ff332a83193fdc979..6d039bd95802bc475702e4b945ae1e5b1a08c653 100644
--- a/sky/engine/core/events/HashChangeEvent.h
+++ b/sky/engine/core/events/HashChangeEvent.h
@@ -73,7 +73,6 @@ public:
private:
HashChangeEvent()
{
- ScriptWrappable::init(this);
}
HashChangeEvent(const String& oldURL, const String& newURL)
@@ -81,7 +80,6 @@ private:
, m_oldURL(oldURL)
, m_newURL(newURL)
{
- ScriptWrappable::init(this);
}
HashChangeEvent(const AtomicString& type, const HashChangeEventInit& initializer)
@@ -89,7 +87,6 @@ private:
, m_oldURL(initializer.oldURL)
, m_newURL(initializer.newURL)
{
- ScriptWrappable::init(this);
}
String m_oldURL;
« no previous file with comments | « sky/engine/core/events/FocusEvent.cpp ('k') | sky/engine/core/events/KeyboardEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698