| Index: Source/modules/encryptedmedia/MediaKeySession.h
|
| diff --git a/Source/modules/encryptedmedia/MediaKeySession.h b/Source/modules/encryptedmedia/MediaKeySession.h
|
| index 1c5df8ac417186320efe223c4658ec9e30b39d11..3304a0dfd21d14da02f4ef3b5c4160cabda27c47 100644
|
| --- a/Source/modules/encryptedmedia/MediaKeySession.h
|
| +++ b/Source/modules/encryptedmedia/MediaKeySession.h
|
| @@ -51,7 +51,7 @@ class MediaKeys;
|
| // it may outlive any references to it as long as the MediaKeys object is alive.
|
| // The ContentDecryptionModuleSession has the same lifetime as this object.
|
| class MediaKeySession
|
| - : public RefCounted<MediaKeySession>, public ScriptWrappable, public EventTarget, public ContextLifecycleObserver
|
| + : public RefCounted<MediaKeySession>, public ScriptWrappable, public EventTargetWithInlineData, public ContextLifecycleObserver
|
| , private ContentDecryptionModuleSessionClient {
|
| public:
|
| static PassRefPtr<MediaKeySession> create(ScriptExecutionContext*, ContentDecryptionModule*, MediaKeys*);
|
| @@ -110,11 +110,6 @@ private:
|
| private:
|
| virtual void refEventTarget() OVERRIDE { ref(); }
|
| virtual void derefEventTarget() OVERRIDE { deref(); }
|
| -
|
| - virtual EventTargetData* eventTargetData() OVERRIDE { return &m_eventTargetData; }
|
| - virtual EventTargetData* ensureEventTargetData() OVERRIDE { return &m_eventTargetData; }
|
| -
|
| - EventTargetData m_eventTargetData;
|
| };
|
|
|
| }
|
|
|