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

Unified Diff: content/browser/android/media_player_manager_android.h

Issue 10919075: Move android mediaplayer from render process to browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add the missing cookies_retriever.h file Created 8 years, 3 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/android/media_player_manager_android.h
diff --git a/content/browser/android/media_player_manager_android.h b/content/browser/android/media_player_manager_android.h
new file mode 100644
index 0000000000000000000000000000000000000000..8f1ea1c77f608888f04ff48ac329ca2f0eae5960
--- /dev/null
+++ b/content/browser/android/media_player_manager_android.h
@@ -0,0 +1,71 @@
+// Copyright (c) 2012 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_ANDROID_MEDIA_PLAYER_MANAGER_ANDROID_H_
+#define CONTENT_BROWSER_ANDROID_MEDIA_PLAYER_MANAGER_ANDROID_H_
+
+#include <map>
+
+#include "base/callback.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/scoped_vector.h"
+#include "base/time.h"
+#include "content/public/browser/render_view_host_observer.h"
+#include "media/base/android/media_player_bridge.h"
+#include "media/base/android/media_player_bridge_manager.h"
+
+namespace content {
+
+// This class manages all the android mediaplayer objects. It receives the
+// control operations from the the renderer process, and forward
+// them to corresponding mediaplayers. Media notification messages are sent
+// this class first, before it forwards them to the renderer process.
+class MediaPlayerManagerAndroid : public content::RenderViewHostObserver,
+ public media::MediaPlayerBridgeManager {
+ public:
+ explicit MediaPlayerManagerAndroid(RenderViewHost* render_view_host);
+ virtual ~MediaPlayerManagerAndroid();
+
+ // RenderViewHostObserver overrides.
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+
+ // An internal method that checks for current time routinely and generates
+ // time update events.
+ void OnTimeUpdate(int player_id, base::TimeDelta current_time);
+
+ // Callbacks needed by media::MediaPlayerBridge.
+ void OnPrepared(int player_id, base::TimeDelta duration);
+ void OnPlaybackComplete(int player_id);
+ void OnBufferingUpdate(int player_id, int percentage);
+ void OnSeekComplete(int player_id, base::TimeDelta current_time);
+ void OnError(int player_id, int error);
+ void OnVideoSizeChanged(int player_id, int width, int height);
+
+ // media::MediaPlayerBridgeManager overrides.
+ virtual void RequestMediaResources(media::MediaPlayerBridge* player) OVERRIDE;
+ virtual void ReleaseMediaResources(media::MediaPlayerBridge* player) OVERRIDE;
+
+ // Release all the players managed by this object.
+ void CleanUpAllPlayers();
+
+ media::MediaPlayerBridge* GetPlayer(int player_id);
+
+ private:
+ // Message handlers.
+ void OnInitialize(int player_id, const std::string& url);
+ void OnStart(int player_id);
+ void OnSeek(int player_id, base::TimeDelta time);
+ void OnPause(int player_id);
+ void OnReleaseResources(int player_id);
+ void OnDestroyPlayer(int player_id);
+
+ // An array of managed players.
+ ScopedVector<media::MediaPlayerBridge> players_;
+
+ DISALLOW_COPY_AND_ASSIGN(MediaPlayerManagerAndroid);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_ANDROID_MEDIA_PLAYER_MANAGER_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698