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

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: 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 d900544d8a7ebbb9cb67235798dc67fb842e136c..0000000000000000000000000000000000000000
--- a/webkit/renderer/media/android/webmediaplayer_proxy_android.h
+++ /dev/null
@@ -1,88 +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();
-
- // Initialize 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;
-
- // Start the player.
- virtual void Start(int player_id) = 0;
-
- // Pause the player.
- virtual void Pause(int player_id) = 0;
-
- // Perform seek on the player.
- virtual void Seek(int player_id, base::TimeDelta time) = 0;
-
- // Release resources for the player.
- virtual void ReleaseResources(int player_id) = 0;
-
- // Destroy the player in the browser process
- virtual void DestroyPlayer(int player_id) = 0;
-
- // Request the player to enter fullscreen.
- virtual void EnterFullscreen(int player_id) = 0;
-
- // Request the player to exit fullscreen.
- virtual void ExitFullscreen(int player_id) = 0;
-
-#if defined(GOOGLE_TV)
- // Request an external surface for out-of-band compositing.
- virtual void RequestExternalSurface(int player_id,
- const gfx::RectF& geometry) = 0;
-#endif
-
- // Inform the media source player that the demuxer is ready.
- virtual void DemuxerReady(
- int player_id,
- const media::MediaPlayerHostMsg_DemuxerReady_Params&) = 0;
-
- // Return the data to the media source player when data is ready.
- virtual void ReadFromDemuxerAck(
- int player_id,
- const media::MediaPlayerHostMsg_ReadFromDemuxerAck_Params& params) = 0;
-
- virtual void GenerateKeyRequest(int player_id,
- const std::string& type,
- const std::vector<uint8>& init_data) = 0;
-
- virtual void AddKey(int player_id,
- const std::vector<uint8>& key,
- const std::vector<uint8>& init_data,
- const std::string& session_id) = 0;
-
- virtual void CancelKeyRequest(int player_id,
- const std::string& session_id) = 0;
-
- // Inform the media source player of changed duration from demuxer.
- virtual void DurationChanged(int player_id,
- const base::TimeDelta& duration) = 0;
-};
-
-} // namespace webkit_media
-
-#endif // WEBKIT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698