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

Unified Diff: Source/WebCore/html/MediaKeyEvent.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/html/HTMLVideoElement.cpp ('k') | Source/WebCore/html/RadioNodeList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/html/MediaKeyEvent.cpp
diff --git a/Source/WebCore/html/MediaKeyEvent.cpp b/Source/WebCore/html/MediaKeyEvent.cpp
index 2f62dbc4909eb23e31c9c7577f8c243e2222b7c7..9cc302c75d5caad7d1fa7e429866c3a15f58693b 100644
--- a/Source/WebCore/html/MediaKeyEvent.cpp
+++ b/Source/WebCore/html/MediaKeyEvent.cpp
@@ -41,6 +41,7 @@ MediaKeyEventInit::MediaKeyEventInit()
MediaKeyEvent::MediaKeyEvent()
{
+ ScriptWrappable::init(this);
}
MediaKeyEvent::MediaKeyEvent(const AtomicString& type, const MediaKeyEventInit& initializer)
@@ -53,6 +54,7 @@ MediaKeyEvent::MediaKeyEvent(const AtomicString& type, const MediaKeyEventInit&
, m_errorCode(initializer.errorCode)
, m_systemCode(initializer.systemCode)
{
+ ScriptWrappable::init(this);
}
MediaKeyEvent::~MediaKeyEvent()
« no previous file with comments | « Source/WebCore/html/HTMLVideoElement.cpp ('k') | Source/WebCore/html/RadioNodeList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698