summaryrefslogtreecommitdiffstats
path: root/content/renderer/render_thread_impl.h
diff options
context:
space:
mode:
authorperkj@chromium.org <perkj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-16 10:20:34 +0000
committerperkj@chromium.org <perkj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-16 10:20:34 +0000
commit0107d8a5c38e1d5c7f8dce4e0454b20d996c6e48 (patch)
tree2a40fa27be1eadf975e2985a532a823bac170b6c /content/renderer/render_thread_impl.h
parent04e6dffb7016f1f1811651592887c21c50b9d3d1 (diff)
downloadchromium_src-0107d8a5c38e1d5c7f8dce4e0454b20d996c6e48.zip
chromium_src-0107d8a5c38e1d5c7f8dce4e0454b20d996c6e48.tar.gz
chromium_src-0107d8a5c38e1d5c7f8dce4e0454b20d996c6e48.tar.bz2
Renamed MediaStreamDependencyFactory to PeerConnectionDependencyFactory.
PeerConnectionDependencyFactory should only deal with MediaStream tracks that are sent on a PeerConnection and thus is not a general MediaStream factory. This cl also moves PeerconnectionDependencyFactory to media/webrtc since it depends on libjingle/webrtc files. Note that PeerConnectionDependencyFactory still have some methods related to general audio input that should be further refactored. BUG=323223 Review URL: https://codereview.chromium.org/272043003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270977 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/render_thread_impl.h')
-rw-r--r--content/renderer/render_thread_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
index f221bd4..b9cb1aa 100644
--- a/content/renderer/render_thread_impl.h
+++ b/content/renderer/render_thread_impl.h
@@ -86,7 +86,7 @@ class IndexedDBDispatcher;
class InputEventFilter;
class InputHandlerManager;
class MediaStreamCenter;
-class MediaStreamDependencyFactory;
+class PeerConnectionDependencyFactory;
class MidiMessageFilter;
class P2PSocketDispatcher;
class PeerConnectionTracker;
@@ -261,7 +261,7 @@ class CONTENT_EXPORT RenderThreadImpl : public RenderThread,
blink::WebMediaStreamCenterClient* client);
// Returns a factory used for creating RTC PeerConnection objects.
- MediaStreamDependencyFactory* GetMediaStreamDependencyFactory();
+ PeerConnectionDependencyFactory* GetPeerConnectionDependencyFactory();
PeerConnectionTracker* peer_connection_tracker() {
return peer_connection_tracker_.get();
@@ -472,7 +472,7 @@ class CONTENT_EXPORT RenderThreadImpl : public RenderThread,
#endif
scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_;
- scoped_ptr<MediaStreamDependencyFactory> media_stream_factory_;
+ scoped_ptr<PeerConnectionDependencyFactory> media_stream_factory_;
// This is used to communicate to the browser process the status
// of all the peer connections created in the renderer.