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

Side by Side Diff: Source/modules/mediasession/MediaSession.h

Issue 1325493002: NOT FOR LANDING Introduce and use WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing files Created 5 years, 3 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 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
OLDNEW
« no previous file with comments | « Source/modules/mediasession/HTMLMediaElementMediaSession.idl ('k') | Source/modules/mediasession/MediaSession.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698