| 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);
|
| };
|
|
|
|
|