Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: content/renderer/render_thread_impl.h

Issue 292343002: Rename RenderThreadImpl::media_stream_factory_ to RenderTreadImpl::peer_connection_factory_ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 // Used on the renderer and IPC threads. 465 // Used on the renderer and IPC threads.
466 scoped_refptr<DBMessageFilter> db_message_filter_; 466 scoped_refptr<DBMessageFilter> db_message_filter_;
467 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; 467 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_;
468 scoped_refptr<AudioMessageFilter> audio_message_filter_; 468 scoped_refptr<AudioMessageFilter> audio_message_filter_;
469 scoped_refptr<MidiMessageFilter> midi_message_filter_; 469 scoped_refptr<MidiMessageFilter> midi_message_filter_;
470 #if defined(OS_ANDROID) 470 #if defined(OS_ANDROID)
471 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; 471 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_;
472 #endif 472 #endif
473 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; 473 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_;
474 474
475 scoped_ptr<PeerConnectionDependencyFactory> media_stream_factory_; 475 scoped_ptr<PeerConnectionDependencyFactory> peer_connection_factory_;
476 476
477 // This is used to communicate to the browser process the status 477 // This is used to communicate to the browser process the status
478 // of all the peer connections created in the renderer. 478 // of all the peer connections created in the renderer.
479 scoped_ptr<PeerConnectionTracker> peer_connection_tracker_; 479 scoped_ptr<PeerConnectionTracker> peer_connection_tracker_;
480 480
481 // Dispatches all P2P sockets. 481 // Dispatches all P2P sockets.
482 scoped_refptr<P2PSocketDispatcher> p2p_socket_dispatcher_; 482 scoped_refptr<P2PSocketDispatcher> p2p_socket_dispatcher_;
483 483
484 // Used on the render thread. 484 // Used on the render thread.
485 scoped_ptr<VideoCaptureImplManager> vc_manager_; 485 scoped_ptr<VideoCaptureImplManager> vc_manager_;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 bool is_distance_field_text_enabled_; 562 bool is_distance_field_text_enabled_;
563 bool is_zero_copy_enabled_; 563 bool is_zero_copy_enabled_;
564 bool is_one_copy_enabled_; 564 bool is_one_copy_enabled_;
565 565
566 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 566 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
567 }; 567 };
568 568
569 } // namespace content 569 } // namespace content
570 570
571 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 571 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698