OLD | NEW |
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 #include "config.h" | |
6 #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" | 5 #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" |
7 | 6 |
8 #include "bindings/core/v8/ExceptionState.h" | 7 #include "bindings/core/v8/ExceptionState.h" |
9 #include "bindings/core/v8/ScriptPromise.h" | 8 #include "bindings/core/v8/ScriptPromise.h" |
10 #include "bindings/core/v8/ScriptPromiseResolver.h" | 9 #include "bindings/core/v8/ScriptPromiseResolver.h" |
11 #include "bindings/core/v8/ScriptState.h" | 10 #include "bindings/core/v8/ScriptState.h" |
12 #include "bindings/core/v8/V8Binding.h" | 11 #include "bindings/core/v8/V8Binding.h" |
13 #include "core/dom/DOMException.h" | 12 #include "core/dom/DOMException.h" |
14 #include "core/dom/DOMTypedArray.h" | 13 #include "core/dom/DOMTypedArray.h" |
15 #include "core/dom/ExceptionCode.h" | 14 #include "core/dom/ExceptionCode.h" |
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 } | 625 } |
627 | 626 |
628 DEFINE_TRACE(HTMLMediaElementEncryptedMedia) | 627 DEFINE_TRACE(HTMLMediaElementEncryptedMedia) |
629 { | 628 { |
630 visitor->trace(m_mediaElement); | 629 visitor->trace(m_mediaElement); |
631 visitor->trace(m_mediaKeys); | 630 visitor->trace(m_mediaKeys); |
632 WillBeHeapSupplement<HTMLMediaElement>::trace(visitor); | 631 WillBeHeapSupplement<HTMLMediaElement>::trace(visitor); |
633 } | 632 } |
634 | 633 |
635 } // namespace blink | 634 } // namespace blink |
OLD | NEW |