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

Side by Side Diff: third_party/WebKit/Source/modules/remoteplayback/RemotePlayback.h

Issue 2848963002: Clean up bindings/core/v8 (Part 1) (Closed)
Patch Set: Fix build Created 3 years, 7 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 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/ActiveScriptWrappable.h"
9 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
10 #include "bindings/core/v8/TraceWrapperMember.h" 9 #include "bindings/core/v8/TraceWrapperMember.h"
11 #include "core/dom/ExecutionContext.h" 10 #include "core/dom/ExecutionContext.h"
12 #include "core/events/EventTarget.h" 11 #include "core/events/EventTarget.h"
13 #include "modules/ModulesExport.h" 12 #include "modules/ModulesExport.h"
13 #include "platform/bindings/ActiveScriptWrappable.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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 WebRemotePlaybackAvailability availability_; 93 WebRemotePlaybackAvailability availability_;
94 HeapHashMap<int, TraceWrapperMember<RemotePlaybackAvailabilityCallback>> 94 HeapHashMap<int, TraceWrapperMember<RemotePlaybackAvailabilityCallback>>
95 availability_callbacks_; 95 availability_callbacks_;
96 Member<HTMLMediaElement> media_element_; 96 Member<HTMLMediaElement> media_element_;
97 Member<ScriptPromiseResolver> prompt_promise_resolver_; 97 Member<ScriptPromiseResolver> prompt_promise_resolver_;
98 }; 98 };
99 99
100 } // namespace blink 100 } // namespace blink
101 101
102 #endif // RemotePlayback_h 102 #endif // RemotePlayback_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698