| 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 #ifndef RemotePlayback_h | 5 #ifndef RemotePlayback_h |
| 6 #define RemotePlayback_h | 6 #define RemotePlayback_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromise.h" | 8 #include "bindings/core/v8/ScriptPromise.h" |
| 9 #include "bindings/core/v8/TraceWrapperMember.h" | |
| 10 #include "core/dom/ExecutionContext.h" | 9 #include "core/dom/ExecutionContext.h" |
| 11 #include "core/events/EventTarget.h" | 10 #include "core/events/EventTarget.h" |
| 12 #include "modules/ModulesExport.h" | 11 #include "modules/ModulesExport.h" |
| 13 #include "platform/bindings/ActiveScriptWrappable.h" | 12 #include "platform/bindings/ActiveScriptWrappable.h" |
| 13 #include "platform/bindings/TraceWrapperMember.h" |
| 14 #include "platform/heap/Handle.h" | 14 #include "platform/heap/Handle.h" |
| 15 #include "platform/wtf/Compiler.h" | 15 #include "platform/wtf/Compiler.h" |
| 16 #include "platform/wtf/text/AtomicString.h" | 16 #include "platform/wtf/text/AtomicString.h" |
| 17 #include "platform/wtf/text/WTFString.h" | 17 #include "platform/wtf/text/WTFString.h" |
| 18 #include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h
" | 18 #include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h
" |
| 19 #include "public/platform/modules/remoteplayback/WebRemotePlaybackClient.h" | 19 #include "public/platform/modules/remoteplayback/WebRemotePlaybackClient.h" |
| 20 #include "public/platform/modules/remoteplayback/WebRemotePlaybackState.h" | 20 #include "public/platform/modules/remoteplayback/WebRemotePlaybackState.h" |
| 21 | 21 |
| 22 namespace blink { | 22 namespace blink { |
| 23 | 23 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 WebRemotePlaybackAvailability availability_; | 104 WebRemotePlaybackAvailability availability_; |
| 105 HeapHashMap<int, TraceWrapperMember<AvailabilityCallbackWrapper>> | 105 HeapHashMap<int, TraceWrapperMember<AvailabilityCallbackWrapper>> |
| 106 availability_callbacks_; | 106 availability_callbacks_; |
| 107 Member<HTMLMediaElement> media_element_; | 107 Member<HTMLMediaElement> media_element_; |
| 108 Member<ScriptPromiseResolver> prompt_promise_resolver_; | 108 Member<ScriptPromiseResolver> prompt_promise_resolver_; |
| 109 }; | 109 }; |
| 110 | 110 |
| 111 } // namespace blink | 111 } // namespace blink |
| 112 | 112 |
| 113 #endif // RemotePlayback_h | 113 #endif // RemotePlayback_h |
| OLD | NEW |