| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "modules/remoteplayback/RemotePlayback.h" | 5 #include "modules/remoteplayback/RemotePlayback.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/ScriptPromiseResolver.h" | 7 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 8 #include "core/dom/DOMException.h" |
| 8 #include "core/dom/Document.h" | 9 #include "core/dom/Document.h" |
| 9 #include "core/events/Event.h" | 10 #include "core/events/Event.h" |
| 10 #include "core/html/HTMLMediaElement.h" | 11 #include "core/html/HTMLMediaElement.h" |
| 11 #include "modules/EventTargetModules.h" | 12 #include "modules/EventTargetModules.h" |
| 12 #include "modules/remoteplayback/RemotePlaybackAvailability.h" | 13 #include "modules/remoteplayback/RemotePlaybackAvailability.h" |
| 13 #include "platform/UserGestureIndicator.h" | 14 #include "platform/UserGestureIndicator.h" |
| 14 | 15 |
| 15 namespace blink { | 16 namespace blink { |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 DEFINE_TRACE(RemotePlayback) | 166 DEFINE_TRACE(RemotePlayback) |
| 166 { | 167 { |
| 167 visitor->trace(m_availabilityObjects); | 168 visitor->trace(m_availabilityObjects); |
| 168 visitor->trace(m_mediaElement); | 169 visitor->trace(m_mediaElement); |
| 169 visitor->trace(m_connectPromiseResolvers); | 170 visitor->trace(m_connectPromiseResolvers); |
| 170 RefCountedGarbageCollectedEventTargetWithInlineData<RemotePlayback>::trace(v
isitor); | 171 RefCountedGarbageCollectedEventTargetWithInlineData<RemotePlayback>::trace(v
isitor); |
| 171 DOMWindowProperty::trace(visitor); | 172 DOMWindowProperty::trace(visitor); |
| 172 } | 173 } |
| 173 | 174 |
| 174 } // namespace blink | 175 } // namespace blink |
| OLD | NEW |