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

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

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
Index: content/browser/media/android/media_session.h
diff --git a/content/browser/media/android/media_session.h b/content/browser/media/android/media_session.h
index fa727b0b049a3a0c2d270df1e3ab7feed1201b21..6503695796de2295b4c1f031a37c96c74ada8674 100644
--- a/content/browser/media/android/media_session.h
+++ b/content/browser/media/android/media_session.h
@@ -47,8 +47,15 @@ class CONTENT_EXPORT MediaSession
// none is currently available.
static MediaSession* Get(WebContents* web_contents);
+ // Returns a newly created standalone media session.
+ static MediaSession* Create(WebContents* web_contents, int session_id);
+
~MediaSession() override;
+ bool Activate();
+ void Deactivate();
+ int session_id() const { return session_id_; }
+
// Adds the given player to the current media session. Returns whether the
// player was successfully added. If it returns false, AddPlayer() should be
// called again later.
@@ -140,7 +147,7 @@ class CONTENT_EXPORT MediaSession
};
using PlayersMap = base::hash_set<PlayerIdentifier, PlayerIdentifier::Hash>;
- explicit MediaSession(WebContents* web_contents);
+ MediaSession(WebContents* web_contents, int session_id = 0);
// Setup the JNI.
void Initialize();
@@ -170,6 +177,7 @@ class CONTENT_EXPORT MediaSession
State audio_focus_state_;
SuspendType suspend_type_;
Type audio_focus_type_;
+ int session_id_;
MediaSessionUmaHelper uma_helper_;
« no previous file with comments | « content/browser/media/android/browser_media_session_manager.cc ('k') | content/browser/media/android/media_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698