summaryrefslogtreecommitdiffstats
path: root/content/renderer/render_view_impl.h
diff options
context:
space:
mode:
authortommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-12 14:37:05 +0000
committertommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-12 14:37:05 +0000
commit8ecf35d58747e7b9fd231682b2ebfdbfb007f0bf (patch)
tree67a5db4ea507682d8fcee4788bd8e3793509ff61 /content/renderer/render_view_impl.h
parentd837839dee2c14a8f4ddf581ffc8665141a645d6 (diff)
downloadchromium_src-8ecf35d58747e7b9fd231682b2ebfdbfb007f0bf.zip
chromium_src-8ecf35d58747e7b9fd231682b2ebfdbfb007f0bf.tar.gz
chromium_src-8ecf35d58747e7b9fd231682b2ebfdbfb007f0bf.tar.bz2
Revert 117406 - Adding support for MediaStream and PeerConnection functionality.
BUG= TEST=content_unittests Review URL: http://codereview.chromium.org/8060055 TBR=grunell@chromium.org Review URL: http://codereview.chromium.org/9186034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117429 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/render_view_impl.h')
-rw-r--r--content/renderer/render_view_impl.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index b534393..b04e3f7 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -64,7 +64,6 @@ class GeolocationDispatcher;
class GURL;
class JavaBridgeDispatcher;
class LoadProgressTracker;
-class MediaStreamDispatcher;
class MediaStreamImpl;
class NotificationProvider;
class PepperDeviceTest;
@@ -119,15 +118,12 @@ class WebImage;
class WebMediaPlayer;
class WebMediaPlayerClient;
class WebMouseEvent;
-class WebPeerConnectionHandler;
-class WebPeerConnectionHandlerClient;
class WebSpeechInputController;
class WebSpeechInputListener;
class WebStorageNamespace;
class WebTouchEvent;
class WebURLLoader;
class WebURLRequest;
-class WebUserMediaClient;
struct WebFileChooserParams;
struct WebFindOptions;
struct WebMediaPlayerAction;
@@ -202,18 +198,11 @@ class RenderViewImpl : public RenderWidget,
send_content_state_immediately_ = value;
}
- MediaStreamDispatcher* media_stream_dispatcher() {
- return media_stream_dispatcher_;
- }
-
// Current P2PSocketDispatcher. Set to NULL if P2P API is disabled.
content::P2PSocketDispatcher* p2p_socket_dispatcher() {
return p2p_socket_dispatcher_;
}
- WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler(
- WebKit::WebPeerConnectionHandlerClient* client);
-
// Functions to add and remove observers for this object.
void AddObserver(content::RenderViewObserver* observer);
void RemoveObserver(content::RenderViewObserver* observer);
@@ -394,7 +383,6 @@ class RenderViewImpl : public RenderWidget,
const WebKit::WebString& url,
const WebKit::WebString& title);
virtual WebKit::WebPageVisibilityState visibilityState() const;
- virtual WebKit::WebUserMediaClient* userMediaClient();
// WebKit::WebFrameClient implementation -------------------------------------
@@ -880,8 +868,6 @@ class RenderViewImpl : public RenderWidget,
// Check whether the preferred size has changed.
void CheckPreferredSize();
- void EnsureMediaStreamImpl();
-
// This callback is triggered when DownloadFavicon completes, either
// succesfully or with a failure. See DownloadFavicon for more
// details.
@@ -1143,9 +1129,6 @@ 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_;