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

Unified Diff: webkit/renderer/media/android/webmediaplayer_proxy_android.h

Issue 17502007: Move webkit/renderer/media/android/ to content/renderer/media/android/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix shared lib Created 7 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
Index: webkit/renderer/media/android/webmediaplayer_proxy_android.h
diff --git a/webkit/renderer/media/android/webmediaplayer_proxy_android.h b/webkit/renderer/media/android/webmediaplayer_proxy_android.h
deleted file mode 100644
index 9b356dae6558907ee70a73c829acbec6ad36c659..0000000000000000000000000000000000000000
--- a/webkit/renderer/media/android/webmediaplayer_proxy_android.h
+++ /dev/null
@@ -1,97 +0,0 @@
-// Copyright 2013 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 WEBKIT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_
-#define WEBKIT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_
-
-#include <string>
-
-#include "base/time.h"
-#include "googleurl/src/gurl.h"
-#include "media/base/android/demuxer_stream_player_params.h"
-#include "media/base/android/media_player_android.h"
-
-namespace webkit_media {
-
-// An interface to facilitate the IPC between the browser side
-// android::MediaPlayer and the WebMediaPlayerImplAndroid in the renderer
-// process.
-// Implementation is provided by content::WebMediaPlayerProxyImplAndroid.
-class WebMediaPlayerProxyAndroid {
- public:
- virtual ~WebMediaPlayerProxyAndroid();
-
- // Initializes a MediaPlayerAndroid object in browser process
- virtual void Initialize(
- int player_id,
- const GURL& url,
- media::MediaPlayerAndroid::SourceType source_type,
- const GURL& first_party_for_cookies) = 0;
-
- // Starts the player.
- virtual void Start(int player_id) = 0;
-
- // Pauses the player.
- virtual void Pause(int player_id) = 0;
-
- // Performs seek on the player.
- virtual void Seek(int player_id, base::TimeDelta time) = 0;
-
- // Releases resources for the player.
- virtual void ReleaseResources(int player_id) = 0;
-
- // Destroys the player in the browser process
- virtual void DestroyPlayer(int player_id) = 0;
-
- // Requests the player to enter fullscreen.
- virtual void EnterFullscreen(int player_id) = 0;
-
- // Requests the player to exit fullscreen.
- virtual void ExitFullscreen(int player_id) = 0;
-
-#if defined(GOOGLE_TV)
- // Requests an external surface for out-of-band compositing.
- virtual void RequestExternalSurface(int player_id,
- const gfx::RectF& geometry) = 0;
-#endif
-
- // Informs the media source player that the demuxer is ready.
- virtual void DemuxerReady(
- int player_id,
- const media::MediaPlayerHostMsg_DemuxerReady_Params&) = 0;
-
- // Returns the data to the media source player when data is ready.
- virtual void ReadFromDemuxerAck(
- int player_id,
- const media::MediaPlayerHostMsg_ReadFromDemuxerAck_Params& params) = 0;
-
- // Informs the media source player of changed duration from demuxer.
- virtual void DurationChanged(int player_id,
- const base::TimeDelta& duration) = 0;
-
- // Initializes a CDM that supports |uuid|. The |media_keys_id| is stored by
- // the CDM for future reference.
- virtual void InitializeCDM(int media_keys_id,
- const std::vector<uint8>& uuid) = 0;
-
- // Asks the CDM referenced by |media_keys_id| to generate a key request.
- virtual void GenerateKeyRequest(int media_keys_id,
- const std::string& type,
- const std::vector<uint8>& init_data) = 0;
-
- // Adds a key to the CDM referenced by |media_keys_id|.
- virtual void AddKey(int media_keys_id,
- const std::vector<uint8>& key,
- const std::vector<uint8>& init_data,
- const std::string& session_id) = 0;
-
- // Destroys the session with |session_id| in the CDM referenced by
- // |media_keys_id|.
- virtual void CancelKeyRequest(int media_keys_id,
- const std::string& session_id) = 0;
-};
-
-} // namespace webkit_media
-
-#endif // WEBKIT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698