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 CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_ |
6 #define CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_ | 6 #define CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/optional.h" | 9 #include "base/optional.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "content/public/common/media_metadata.h" | 11 #include "content/public/common/media_metadata.h" |
12 | 12 |
| 13 namespace blink { |
| 14 namespace mojom { |
| 15 enum class MediaSessionAction; |
| 16 } // namespace mojom |
| 17 } // namespace blink |
| 18 |
13 namespace content { | 19 namespace content { |
14 | 20 |
15 class MediaSession; | 21 class MediaSession; |
16 class MediaSessionImpl; | 22 class MediaSessionImpl; |
17 | 23 |
18 // The observer for observing MediaSession events. | 24 // The observer for observing MediaSession events. |
19 class CONTENT_EXPORT MediaSessionObserver { | 25 class CONTENT_EXPORT MediaSessionObserver { |
20 public: | 26 public: |
21 // Gets the observed MediaSession. Will return null when the session is | 27 // Gets the observed MediaSession. Will return null when the session is |
22 // destroyed. | 28 // destroyed. |
23 MediaSession* media_session() const; | 29 MediaSession* media_session() const; |
24 | 30 |
25 // Called when the observed MediaSession is being destroyed. Give subclass a | 31 // Called when the observed MediaSession is being destroyed. Give subclass a |
26 // chance to clean up. media_session() will return nullptr after this method | 32 // chance to clean up. media_session() will return nullptr after this method |
27 // is called. | 33 // is called. |
28 virtual void MediaSessionDestroyed() {} | 34 virtual void MediaSessionDestroyed() {} |
29 | 35 |
30 // Called when the observed MediaSession has changed its state. | 36 // Called when the observed MediaSession has changed its state. |
31 virtual void MediaSessionStateChanged(bool is_controllable, | 37 virtual void MediaSessionStateChanged(bool is_controllable, |
32 bool is_suspended) {} | 38 bool is_suspended) {} |
33 | 39 |
34 // Called when the observed MediaSession has changed metadata. | 40 // Called when the observed MediaSession has changed metadata. |
35 virtual void MediaSessionMetadataChanged( | 41 virtual void MediaSessionMetadataChanged( |
36 const base::Optional<MediaMetadata>& metadata) {} | 42 const base::Optional<MediaMetadata>& metadata) {} |
37 | 43 |
| 44 // Called when media session action is enabled. |
| 45 virtual void MediaSessionEnabledAction( |
| 46 blink::mojom::MediaSessionAction action) {} |
| 47 |
| 48 // Called when media session action is disabled. |
| 49 virtual void MediaSessionDisabledAction( |
| 50 blink::mojom::MediaSessionAction action) {} |
| 51 |
38 protected: | 52 protected: |
39 // Create a MediaSessionObserver and start observing a session. | 53 // Create a MediaSessionObserver and start observing a session. |
40 MediaSessionObserver(MediaSession* media_session); | 54 MediaSessionObserver(MediaSession* media_session); |
41 // Destruct a MediaSessionObserver and remove it from the session if it's | 55 // Destruct a MediaSessionObserver and remove it from the session if it's |
42 // still observing. | 56 // still observing. |
43 virtual ~MediaSessionObserver(); | 57 virtual ~MediaSessionObserver(); |
44 | 58 |
45 private: | 59 private: |
46 friend class MediaSessionImpl; | 60 friend class MediaSessionImpl; |
47 | 61 |
48 void StopObserving(); | 62 void StopObserving(); |
49 | 63 |
50 // Weak pointer to MediaSession | 64 // Weak pointer to MediaSession |
51 MediaSessionImpl* media_session_; | 65 MediaSessionImpl* media_session_; |
52 | 66 |
53 DISALLOW_COPY_AND_ASSIGN(MediaSessionObserver); | 67 DISALLOW_COPY_AND_ASSIGN(MediaSessionObserver); |
54 }; | 68 }; |
55 | 69 |
56 } // namespace content | 70 } // namespace content |
57 | 71 |
58 #endif // CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_ | 72 #endif // CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_ |
OLD | NEW |