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

Unified Diff: Source/WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.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 | « no previous file | Source/WebCore/Modules/geolocation/Geolocation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.cpp
diff --git a/Source/WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.cpp b/Source/WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.cpp
index 4a9c843a6521f9b1c7f2d9bbbf2036c43e7aca79..48f6d36405d2fab27ce1b048fa56f43fa5da17e8 100644
--- a/Source/WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.cpp
+++ b/Source/WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.cpp
@@ -36,10 +36,12 @@ namespace WebCore {
MediaKeyMessageEventInit::MediaKeyMessageEventInit()
{
+ ScriptWrappable::init(this);
}
MediaKeyMessageEvent::MediaKeyMessageEvent()
{
+ ScriptWrappable::init(this);
}
MediaKeyMessageEvent::MediaKeyMessageEvent(const AtomicString& type, const MediaKeyMessageEventInit& initializer)
@@ -47,6 +49,7 @@ MediaKeyMessageEvent::MediaKeyMessageEvent(const AtomicString& type, const Media
, m_message(initializer.message)
, m_destinationURL(initializer.destinationURL)
{
+ ScritpWrappable::init(this);
}
MediaKeyMessageEvent::~MediaKeyMessageEvent()
« no previous file with comments | « no previous file | Source/WebCore/Modules/geolocation/Geolocation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698