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

Side by Side Diff: third_party/WebKit/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h

Issue 2606643002: Supplement should have a Member to the corresponding Supplementable object (Closed)
Patch Set: temp Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef HTMLMediaElementEncryptedMedia_h 5 #ifndef HTMLMediaElementEncryptedMedia_h
6 #define HTMLMediaElementEncryptedMedia_h 6 #define HTMLMediaElementEncryptedMedia_h
7 7
8 #include "core/EventTypeNames.h" 8 #include "core/EventTypeNames.h"
9 #include "core/dom/DOMTypedArray.h" 9 #include "core/dom/DOMTypedArray.h"
10 #include "core/events/EventTarget.h" 10 #include "core/events/EventTarget.h"
11 #include "core/html/HTMLMediaElement.h"
11 #include "modules/ModulesExport.h" 12 #include "modules/ModulesExport.h"
12 #include "platform/Supplementable.h" 13 #include "platform/Supplementable.h"
13 #include "platform/heap/Handle.h" 14 #include "platform/heap/Handle.h"
14 #include "public/platform/WebEncryptedMediaTypes.h" 15 #include "public/platform/WebEncryptedMediaTypes.h"
15 #include "public/platform/WebMediaPlayerEncryptedMediaClient.h" 16 #include "public/platform/WebMediaPlayerEncryptedMediaClient.h"
16 17
17 namespace blink { 18 namespace blink {
18 19
19 class HTMLMediaElement; 20 class HTMLMediaElement;
20 class MediaKeys; 21 class MediaKeys;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 // - attaching media keys, which shall have a boolean value 70 // - attaching media keys, which shall have a boolean value
70 bool m_isWaitingForKey; 71 bool m_isWaitingForKey;
71 bool m_isAttachingMediaKeys; 72 bool m_isAttachingMediaKeys;
72 73
73 Member<MediaKeys> m_mediaKeys; 74 Member<MediaKeys> m_mediaKeys;
74 }; 75 };
75 76
76 } // namespace blink 77 } // namespace blink
77 78
78 #endif 79 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698