OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 MediaSession_h | 5 #ifndef MediaSession_h |
6 #define MediaSession_h | 6 #define MediaSession_h |
7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromise.h" |
| 9 #include "bindings/core/v8/ScriptPromiseResolver.h" |
8 #include "bindings/core/v8/ScriptWrappable.h" | 10 #include "bindings/core/v8/ScriptWrappable.h" |
| 11 #include "modules/ModulesExport.h" |
9 #include "platform/heap/Handle.h" | 12 #include "platform/heap/Handle.h" |
| 13 #include "public/platform/modules/mediasession/WebMediaSession.h" |
| 14 #include "wtf/OwnPtr.h" |
10 | 15 |
11 namespace blink { | 16 namespace blink { |
12 | 17 |
13 class MediaSession : public GarbageCollected<MediaSession>, public ScriptWrappab
le { | 18 class ScriptState; |
| 19 class WebMediaSession; |
| 20 |
| 21 class MODULES_EXPORT MediaSession |
| 22 : public GarbageCollectedFinalized<MediaSession> |
| 23 , public ScriptWrappable { |
14 DEFINE_WRAPPERTYPEINFO(); | 24 DEFINE_WRAPPERTYPEINFO(); |
15 public: | 25 public: |
16 static MediaSession* create(); | 26 static MediaSession* create(ScriptState*); |
| 27 static MediaSession* createForTesting(PassOwnPtr<WebMediaSession>); |
17 | 28 |
18 void activate(); | 29 WebMediaSession* webMediaSession() { return m_webMediaSession.get(); } |
19 void deactivate(); | 30 |
| 31 ScriptPromise activate(ScriptState*); |
| 32 ScriptPromise deactivate(ScriptState*); |
20 | 33 |
21 DEFINE_INLINE_TRACE() { } | 34 DEFINE_INLINE_TRACE() { } |
22 | 35 |
23 private: | 36 private: |
24 MediaSession() = default; | 37 MediaSession(PassOwnPtr<WebMediaSession>); |
| 38 |
| 39 OwnPtr<WebMediaSession> m_webMediaSession; |
25 }; | 40 }; |
26 | 41 |
27 } // namespace blink | 42 } // namespace blink |
28 | 43 |
29 #endif // MediaSession_h | 44 #endif // MediaSession_h |
OLD | NEW |