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

Unified Diff: content/public/browser/media_session_observer.h

Issue 2456783003: Let CastMediaBlocker observe MediaSession instead of WebContents [FOR TRY] (Closed)
Patch Set: fixed Linux build Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/browser/media_session.h ('k') | content/public/browser/media_session_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/media_session_observer.h
diff --git a/content/public/browser/media_session_observer.h b/content/public/browser/media_session_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..70bef580d4b92df4383ebafef01a4f0d1ec3d2b2
--- /dev/null
+++ b/content/public/browser/media_session_observer.h
@@ -0,0 +1,58 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_
+#define CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_
+
+#include "base/macros.h"
+#include "base/optional.h"
+#include "content/common/content_export.h"
+#include "content/public/common/media_metadata.h"
+
+namespace content {
+
+class MediaSession;
+class MediaSessionImpl;
+
+// The observer for observing MediaSession events.
+class CONTENT_EXPORT MediaSessionObserver {
+ public:
+ // Gets the observed MediaSession.
+ MediaSession* media_session() const;
+
+ // Called when the observed MediaSession is being destroyed. Gives subclass a
+ // chance to cleanup. After the whole loop over MediaSessionObservers has been
+ // finished, media_session() returns nullptr.
+ virtual void MediaSessionDestroyed() {}
+
+ // Called when the observed MediaSession has changed its state.
+ virtual void MediaSessionStateChanged(bool is_controllable,
+ bool is_suspended) {}
+
+ // Called when the observed MediaSession has changed metadata.
+ virtual void MediaSessionMetadataChanged(
+ const base::Optional<MediaMetadata>& metadata) {}
+
+ protected:
+ // Create a MediaSessionObserver and start observing |session|.
+ explicit MediaSessionObserver(MediaSession* session);
+
+ // Destructor of MediaSessionObserver. It will remove itself from |session| if
+ // the observer is still observing a MediaSession.
+ virtual ~MediaSessionObserver();
+
+ private:
+ friend class MediaSessionImpl;
+
+ void StopObserving();
+
+ // Weak pointer to MediaSession.
+ MediaSessionImpl* session_;
+
+ DISALLOW_COPY_AND_ASSIGN(MediaSessionObserver);
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_
« no previous file with comments | « content/public/browser/media_session.h ('k') | content/public/browser/media_session_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698