| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index 8beea4e0ac68ae77a6d88572e9a69548a74a1335..88f430e4f526c3d31d384b99a9c582cf3556fca8 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -63,6 +63,7 @@ class GURL;
|
| class IntentsDispatcher;
|
| class JavaBridgeDispatcher;
|
| class LoadProgressTracker;
|
| +class MediaStreamDispatcher
|
| class MediaStreamImpl;
|
| class NotificationProvider;
|
| class PepperDeviceTest;
|
| @@ -204,6 +205,10 @@ class RenderViewImpl : public RenderWidget,
|
|
|
| int history_list_offset() const { return history_list_offset_; }
|
|
|
| + MediaStreamDispatcher* media_stream_dispatcher() {
|
| + return media_stream_dispatcher_;
|
| + }
|
| +
|
| const WebPreferences& webkit_preferences() const {
|
| return webkit_preferences_;
|
| }
|
| @@ -389,6 +394,7 @@ class RenderViewImpl : public RenderWidget,
|
| virtual WebKit::WebSpeechInputController* speechInputController(
|
| WebKit::WebSpeechInputListener* listener);
|
| virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient();
|
| + virtual WebKit::WebMediaStreamClient* mediaStreamClient();
|
| virtual void zoomLimitsChanged(double minimum_level, double maximum_level);
|
| virtual void zoomLevelChanged();
|
| virtual void registerProtocolHandler(const WebKit::WebString& scheme,
|
| @@ -1145,6 +1151,9 @@ class RenderViewImpl : public RenderWidget,
|
| // Device orientation dispatcher attached to this view; lazily initialized.
|
| DeviceOrientationDispatcher* device_orientation_dispatcher_;
|
|
|
| + // MediaStream dispatcher attached to this view; lazily initialized.
|
| + MediaStreamDispatcher* media_stream_dispatcher_;
|
| +
|
| // MediaStreamImpl attached to this view; lazily initialized.
|
| scoped_refptr<MediaStreamImpl> media_stream_impl_;
|
|
|
|
|