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

Unified Diff: Source/WebCore/dom/FocusEvent.cpp

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/Event.cpp ('k') | Source/WebCore/dom/HashChangeEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/FocusEvent.cpp
diff --git a/Source/WebCore/dom/FocusEvent.cpp b/Source/WebCore/dom/FocusEvent.cpp
index 08d5222f94459398db6b4f463673495acb522667..e2b047708b1c423798f701fd59914936007b0b0f 100644
--- a/Source/WebCore/dom/FocusEvent.cpp
+++ b/Source/WebCore/dom/FocusEvent.cpp
@@ -51,18 +51,21 @@ bool FocusEvent::isFocusEvent() const
FocusEvent::FocusEvent()
{
+ ScriptWrappable::init(this);
}
FocusEvent::FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, PassRefPtr<EventTarget> relatedTarget)
: UIEvent(type, canBubble, cancelable, view, detail)
, m_relatedTarget(relatedTarget)
{
+ ScriptWrappable::init(this);
}
FocusEvent::FocusEvent(const AtomicString& type, const FocusEventInit& initializer)
: UIEvent(type, initializer)
, m_relatedTarget(initializer.relatedTarget)
{
+ ScriptWrappable::init(this);
}
PassRefPtr<FocusEventDispatchMediator> FocusEventDispatchMediator::create(PassRefPtr<FocusEvent> focusEvent)
« no previous file with comments | « Source/WebCore/dom/Event.cpp ('k') | Source/WebCore/dom/HashChangeEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698