| Index: content/renderer/render_view.h
|
| diff --git a/content/renderer/render_view.h b/content/renderer/render_view.h
|
| index e6be86ec77130d0ce62ddc12768f0dfc1fc3558b..f87c7a3f1525e56a9513701ebc860e33370f0367 100644
|
| --- a/content/renderer/render_view.h
|
| +++ b/content/renderer/render_view.h
|
| @@ -62,6 +62,7 @@ class GeolocationDispatcher;
|
| class GURL;
|
| class IntentsDispatcher;
|
| class LoadProgressTracker;
|
| +class MediaStreamDispatcher;
|
| class MediaStreamImpl;
|
| class NavigationState;
|
| class NotificationProvider;
|
| @@ -211,6 +212,10 @@ class RenderView : public RenderWidget,
|
| int history_list_offset() const { return history_list_offset_; }
|
| PepperPluginDelegateImpl* pepper_delegate() { return &pepper_delegate_; }
|
|
|
| + MediaStreamDispatcher* media_stream_dispatcher() {
|
| + return media_stream_dispatcher_;
|
| + }
|
| +
|
| const WebPreferences& webkit_preferences() const {
|
| return webkit_preferences_;
|
| }
|
| @@ -440,6 +445,7 @@ class RenderView : 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,
|
| @@ -1150,6 +1156,9 @@ class RenderView : 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_;
|
|
|
|
|