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

Unified Diff: Source/WebCore/dom/TextEvent.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/Text.h ('k') | Source/WebCore/dom/TouchEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/TextEvent.cpp
diff --git a/Source/WebCore/dom/TextEvent.cpp b/Source/WebCore/dom/TextEvent.cpp
index d8ea73891c7afd13ec83e603ef9577ab502c7ef0..18fd55901be317e4bca6196b237135b883aa94a6 100644
--- a/Source/WebCore/dom/TextEvent.cpp
+++ b/Source/WebCore/dom/TextEvent.cpp
@@ -67,6 +67,7 @@ TextEvent::TextEvent()
, m_shouldSmartReplace(false)
, m_shouldMatchStyle(false)
{
+ ScriptWrappable::init(this);
}
TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType)
@@ -77,6 +78,7 @@ TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEven
, m_shouldSmartReplace(false)
, m_shouldMatchStyle(false)
{
+ ScriptWrappable::init(this);
}
TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment,
@@ -88,6 +90,7 @@ TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefP
, m_shouldSmartReplace(shouldSmartReplace)
, m_shouldMatchStyle(shouldMatchStyle)
{
+ ScriptWrappable::init(this);
}
TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, const Vector<DictationAlternative>& dictationAlternatives)
@@ -98,6 +101,7 @@ TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, const Ve
, m_shouldMatchStyle(false)
, m_dictationAlternatives(dictationAlternatives)
{
+ ScriptWrappable::init(this);
}
TextEvent::~TextEvent()
« no previous file with comments | « Source/WebCore/dom/Text.h ('k') | Source/WebCore/dom/TouchEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698