| Index: content/renderer/media/media_stream_impl.h
|
| diff --git a/content/renderer/media/media_stream_impl.h b/content/renderer/media/media_stream_impl.h
|
| index 970a2f2f768f5bda328c1d8b35feb2ba78713367..662ddade24db2c15a5d6c09e1f6de49b346c13e0 100644
|
| --- a/content/renderer/media/media_stream_impl.h
|
| +++ b/content/renderer/media/media_stream_impl.h
|
| @@ -85,8 +85,6 @@ class CONTENT_EXPORT MediaStreamImpl
|
| MediaStreamDependencyFactory* dependency_factory);
|
| virtual ~MediaStreamImpl();
|
|
|
| - virtual WebKit::WebPeerConnection00Handler* CreatePeerConnectionHandlerJsep(
|
| - WebKit::WebPeerConnection00HandlerClient* client);
|
| // Stops a local MediaStream by notifying the MediaStreamDispatcher that the
|
| // stream no longer may be used.
|
| virtual void StopLocalMediaStream(
|
| @@ -192,7 +190,9 @@ class CONTENT_EXPORT MediaStreamImpl
|
| const WebKit::WebVector<WebKit::WebMediaStreamSource>& audio_sources,
|
| const WebKit::WebVector<WebKit::WebMediaStreamSource>& video_sources);
|
|
|
| - scoped_ptr<MediaStreamDependencyFactory> dependency_factory_;
|
| + // Weak ref to a MediaStreamDependencyFactory, owned by the RenderThread.
|
| + // It's valid for the lifetime of RenderThread.
|
| + MediaStreamDependencyFactory* dependency_factory_;
|
|
|
| // media_stream_dispatcher_ is a weak reference, owned by RenderView. It's
|
| // valid for the lifetime of RenderView.
|
|
|