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

Unified Diff: content/browser/media/session/pepper_playback_observer.h

Issue 2060933002: Let Flash join and be controlled by media session (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pepper_to_contents
Patch Set: addressed dcheng's comments Created 4 years, 6 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 | « no previous file | content/browser/media/session/pepper_playback_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/media/session/pepper_playback_observer.h
diff --git a/content/browser/media/session/pepper_playback_observer.h b/content/browser/media/session/pepper_playback_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..11c85fea0048ee67fd3a499e6dce8545d6707bfe
--- /dev/null
+++ b/content/browser/media/session/pepper_playback_observer.h
@@ -0,0 +1,46 @@
+// 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_BROWSER_MEDIA_SESSION_PEPPER_PLAYBACK_OBSERVER_H_
+#define CONTENT_BROWSER_MEDIA_SESSION_PEPPER_PLAYBACK_OBSERVER_H_
+
+#include <stdint.h>
+#include <map>
+#include <memory>
+
+#include "base/macros.h"
+
+namespace content {
+
+class PepperPlayerDelegate;
+class WebContentsImpl;
+
+// Class observing Pepper playback changes from WebContents, and update
+// MediaSession accordingly. Can only be a member of WebContentsImpl and must be
+// destroyed in ~WebContentsImpl().
+class PepperPlaybackObserver {
+ public:
+ explicit PepperPlaybackObserver(WebContentsImpl* contents);
+ virtual ~PepperPlaybackObserver();
+
+ void PepperInstanceCreated(int32_t pp_instance);
+ void PepperInstanceDeleted(int32_t pp_instance);
+ void PepperStartsPlayback(int32_t pp_instance);
+ void PepperStopsPlayback(int32_t pp_instance);
+
+ private:
+ // Owning PepperPlayerDelegates.
+ using PlayersMap =
+ std::map<int32_t, std::unique_ptr<PepperPlayerDelegate>>;
+ PlayersMap players_map_;
+
+ // Weak reference to WebContents.
+ WebContentsImpl* contents_;
+
+ DISALLOW_COPY_AND_ASSIGN(PepperPlaybackObserver);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_MEDIA_SESSION_PEPPER_PLAYBACK_OBSERVER_H_
« no previous file with comments | « no previous file | content/browser/media/session/pepper_playback_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698