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

Unified Diff: chromecast/browser/cast_content_browser_client.h

Issue 1257013003: Load CMA backend from shared library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DCHECK on posted task Created 5 years, 5 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: chromecast/browser/cast_content_browser_client.h
diff --git a/chromecast/browser/cast_content_browser_client.h b/chromecast/browser/cast_content_browser_client.h
index 48caf43134dd081eac980c7d78a7fd945f9b4eab..aca5d645119bd32d78b67aab8bd498fbfe0315c5 100644
--- a/chromecast/browser/cast_content_browser_client.h
+++ b/chromecast/browser/cast_content_browser_client.h
@@ -31,8 +31,8 @@ class HostResolver;
namespace chromecast {
namespace media {
-class MediaPipelineDevice;
-class MediaPipelineDeviceParams;
+class MediaPipelineBackend;
+struct MediaPipelineDeviceParams;
}
namespace shell {
@@ -62,7 +62,7 @@ class CastContentBrowserClient: public content::ContentBrowserClient {
#if !defined(OS_ANDROID)
// Creates a MediaPipelineDevice (CMA backend) for media playback, called
// once per media player instance.
- virtual scoped_ptr<media::MediaPipelineDevice> CreateMediaPipelineDevice(
+ virtual scoped_ptr<media::MediaPipelineBackend> CreateMediaPipelineBackend(
const media::MediaPipelineDeviceParams& params);
#endif

Powered by Google App Engine
This is Rietveld 408576698