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

Unified Diff: webkit/glue/webmediaplayer_impl.h

Issue 7480032: Plumb media data from renderers up to MediaInternals in the browser process. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Responding to feedback. Created 9 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: webkit/glue/webmediaplayer_impl.h
diff --git a/webkit/glue/webmediaplayer_impl.h b/webkit/glue/webmediaplayer_impl.h
index 6ab839850f744adb6d9339a43aac04e8a856b626..b4858f78d65e70c54bc8bf9269c37564721a2451 100644
--- a/webkit/glue/webmediaplayer_impl.h
+++ b/webkit/glue/webmediaplayer_impl.h
@@ -77,6 +77,10 @@ namespace WebKit {
class WebFrame;
}
+namespace media {
+class MediaLog;
+}
+
namespace webkit_glue {
class MediaResourceLoaderBridgeFactory;
@@ -208,7 +212,8 @@ class WebMediaPlayerImpl
WebMediaPlayerImpl(WebKit::WebMediaPlayerClient* client,
media::FilterCollection* collection,
media::MessageLoopFactory* message_loop_factory,
- MediaStreamClient* media_stream_client);
+ MediaStreamClient* media_stream_client,
+ media::MediaLog* media_log);
virtual ~WebMediaPlayerImpl();
// Finalizes initialization of the object.
@@ -361,6 +366,8 @@ class WebMediaPlayerImpl
scoped_ptr<skia::PlatformCanvas> skia_canvas_;
#endif
+ scoped_refptr<media::MediaLog> media_log_;
+
DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl);
};

Powered by Google App Engine
This is Rietveld 408576698