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

Unified Diff: Source/WebCore/Modules/websockets/CloseEvent.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
Index: Source/WebCore/Modules/websockets/CloseEvent.h
diff --git a/Source/WebCore/Modules/websockets/CloseEvent.h b/Source/WebCore/Modules/websockets/CloseEvent.h
index 75a7750429047ae8a1b4acfea57ef99ced7ee375..ba362cf1d09e6a44c1c0ee8889471fbf107f2602 100644
--- a/Source/WebCore/Modules/websockets/CloseEvent.h
+++ b/Source/WebCore/Modules/websockets/CloseEvent.h
@@ -78,6 +78,7 @@ private:
, m_wasClean(false)
, m_code(0)
{
+ ScriptWrappable::init(this);
}
CloseEvent(bool wasClean, int code, const String& reason)
@@ -86,6 +87,7 @@ private:
, m_code(code)
, m_reason(reason)
{
+ ScriptWrappable::init(this);
}
CloseEvent(const AtomicString& type, const CloseEventInit& initializer)
@@ -94,6 +96,7 @@ private:
, m_code(initializer.code)
, m_reason(initializer.reason)
{
+ ScriptWrappable::init(this);
}
bool m_wasClean;
« no previous file with comments | « Source/WebCore/Modules/webaudio/OfflineAudioCompletionEvent.cpp ('k') | Source/WebCore/bindings/v8/ScriptWrappable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698