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

Unified Diff: Source/WebCore/dom/HashChangeEvent.h

Issue 13814002: First part of work to move V8 binding integrity off of vtables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/WebCore/dom/FocusEvent.cpp ('k') | Source/WebCore/dom/KeyboardEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/HashChangeEvent.h
diff --git a/Source/WebCore/dom/HashChangeEvent.h b/Source/WebCore/dom/HashChangeEvent.h
index 84cd3e7c300718414028627a43f4054da64ab85f..0decf39293cd2568e5172260fce53b7791dc1daa 100644
--- a/Source/WebCore/dom/HashChangeEvent.h
+++ b/Source/WebCore/dom/HashChangeEvent.h
@@ -71,6 +71,7 @@ public:
private:
HashChangeEvent()
{
+ ScriptWrappable::init(this);
}
HashChangeEvent(const String& oldURL, const String& newURL)
@@ -78,6 +79,7 @@ private:
, m_oldURL(oldURL)
, m_newURL(newURL)
{
+ ScriptWrappable::init(this);
}
HashChangeEvent(const AtomicString& type, const HashChangeEventInit& initializer)
@@ -85,6 +87,7 @@ private:
, m_oldURL(initializer.oldURL)
, m_newURL(initializer.newURL)
{
+ ScriptWrappable::init(this);
}
String m_oldURL;
« no previous file with comments | « Source/WebCore/dom/FocusEvent.cpp ('k') | Source/WebCore/dom/KeyboardEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698