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

Unified Diff: content/browser/media/android/media_session.cc

Issue 1308983005: NOT FOR LANDING Implement WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add forward declaration Created 4 years, 11 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/browser/media/android/media_session.h ('k') | content/browser/web_contents/web_contents_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/media/android/media_session.cc
diff --git a/content/browser/media/android/media_session.cc b/content/browser/media/android/media_session.cc
index a32159679fa0711ca3c059b47a1b5a190683ff87..c9eab552a91a706f8d8d2aae2fe81f44c902370a 100644
--- a/content/browser/media/android/media_session.cc
+++ b/content/browser/media/android/media_session.cc
@@ -54,11 +54,38 @@ MediaSession* MediaSession::Get(WebContents* web_contents) {
return session;
}
+// static
+MediaSession* MediaSession::Create(WebContents* web_contents, int session_id) {
+ MediaSession* session = new MediaSession(web_contents, session_id);
+ session->Initialize();
+ return session;
+}
+
MediaSession::~MediaSession() {
DCHECK(players_.empty());
DCHECK(audio_focus_state_ == State::INACTIVE);
}
+bool MediaSession::Activate() {
+ if (audio_focus_state_ == State::ACTIVE)
+ return true;
+
+ const Type type = Type::Content;
+ if (!RequestSystemAudioFocus(type))
+ return false;
+
+ audio_focus_state_ = State::ACTIVE;
+ audio_focus_type_ = type;
+ UpdateWebContents();
+
+ return true;
+}
+
+void MediaSession::Deactivate() {
+ AbandonSystemAudioFocusIfNeeded();
+ DCHECK(audio_focus_state_ == State::INACTIVE);
+}
+
bool MediaSession::AddPlayer(MediaSessionObserver* observer,
int player_id,
Type type) {
@@ -267,10 +294,11 @@ void MediaSession::OnResumeInternal(SuspendType type) {
UpdateWebContents();
}
-MediaSession::MediaSession(WebContents* web_contents)
+MediaSession::MediaSession(WebContents* web_contents, int session_id_)
: WebContentsObserver(web_contents),
audio_focus_state_(State::INACTIVE),
- audio_focus_type_(Type::Transient) {}
+ audio_focus_type_(Type::Transient),
+ session_id_(session_id_) {}
void MediaSession::Initialize() {
JNIEnv* env = base::android::AttachCurrentThread();
@@ -310,7 +338,8 @@ void MediaSession::AbandonSystemAudioFocusIfNeeded() {
}
void MediaSession::UpdateWebContents() {
- static_cast<WebContentsImpl*>(web_contents())->OnMediaSessionStateChanged();
+ static_cast<WebContentsImpl*>(web_contents())
+ ->OnMediaSessionStateChanged(this);
}
void MediaSession::SetAudioFocusState(State audio_focus_state) {
« no previous file with comments | « content/browser/media/android/media_session.h ('k') | content/browser/web_contents/web_contents_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698