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

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

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_observer.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/media_session_observer.cc
diff --git a/content/public/browser/media_session_observer.cc b/content/public/browser/media_session_observer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1fc8b7763e89b9f5b2829dced5ce021a59caaff2
--- /dev/null
+++ b/content/public/browser/media_session_observer.cc
@@ -0,0 +1,32 @@
+// 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.
+
+#include "content/public/browser/media_session_observer.h"
+
+#include "content/browser/media/session/media_session_impl.h"
+
+namespace content {
+
+MediaSessionObserver::MediaSessionObserver(MediaSession* session)
+ : session_(static_cast<MediaSessionImpl*>(session)) {
+ if (session_)
+ session_->AddObserver(this);
+}
+
+MediaSessionObserver::~MediaSessionObserver() {
+ if (session_)
+ session_->RemoveObserver(this);
+}
+
+MediaSession* MediaSessionObserver::media_session() const {
+ return session_;
+}
+
+void MediaSessionObserver::StopObserving() {
+ if (session_)
+ session_->RemoveObserver(this);
+ session_ = nullptr;
+}
+
+} // namespace content
« no previous file with comments | « content/public/browser/media_session_observer.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698