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

Unified Diff: Source/WebCore/dom/BeforeLoadEvent.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/AutocompleteErrorEvent.h ('k') | Source/WebCore/dom/CDATASection.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/BeforeLoadEvent.h
diff --git a/Source/WebCore/dom/BeforeLoadEvent.h b/Source/WebCore/dom/BeforeLoadEvent.h
index 3289712d2aee83abafba696e360385cf6322a06c..78202b4574c6eda3c391d12dc6d9c1dda2a8b61a 100644
--- a/Source/WebCore/dom/BeforeLoadEvent.h
+++ b/Source/WebCore/dom/BeforeLoadEvent.h
@@ -64,18 +64,21 @@ public:
private:
BeforeLoadEvent()
{
+ ScriptWrappable::init(this);
}
explicit BeforeLoadEvent(const String& url)
: Event(eventNames().beforeloadEvent, false, true)
, m_url(url)
{
+ ScriptWrappable::init(this);
}
BeforeLoadEvent(const AtomicString& type, const BeforeLoadEventInit& initializer)
: Event(type, initializer)
, m_url(initializer.url)
{
+ ScriptWrappable::init(this);
}
String m_url;
« no previous file with comments | « Source/WebCore/dom/AutocompleteErrorEvent.h ('k') | Source/WebCore/dom/CDATASection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698