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

Side by Side Diff: content/renderer/media/media_stream_dependency_factory.cc

Issue 15822010: Update refernces to Blink's Platform API (content) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
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 #include "content/renderer/media/media_stream_dependency_factory.h" 5 #include "content/renderer/media/media_stream_dependency_factory.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/synchronization/waitable_event.h" 10 #include "base/synchronization/waitable_event.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "content/public/common/content_switches.h" 12 #include "content/public/common/content_switches.h"
13 #include "content/renderer/media/media_stream_source_extra_data.h" 13 #include "content/renderer/media/media_stream_source_extra_data.h"
14 #include "content/renderer/media/rtc_media_constraints.h" 14 #include "content/renderer/media/rtc_media_constraints.h"
15 #include "content/renderer/media/rtc_peer_connection_handler.h" 15 #include "content/renderer/media/rtc_peer_connection_handler.h"
16 #include "content/renderer/media/rtc_video_capturer.h" 16 #include "content/renderer/media/rtc_video_capturer.h"
17 #include "content/renderer/media/video_capture_impl_manager.h" 17 #include "content/renderer/media/video_capture_impl_manager.h"
18 #include "content/renderer/media/webaudio_capturer_source.h" 18 #include "content/renderer/media/webaudio_capturer_source.h"
19 #include "content/renderer/media/webrtc_audio_device_impl.h" 19 #include "content/renderer/media/webrtc_audio_device_impl.h"
20 #include "content/renderer/media/webrtc_local_audio_track.h" 20 #include "content/renderer/media/webrtc_local_audio_track.h"
21 #include "content/renderer/media/webrtc_logging_handler_impl.h" 21 #include "content/renderer/media/webrtc_logging_handler_impl.h"
22 #include "content/renderer/media/webrtc_logging_message_filter.h" 22 #include "content/renderer/media/webrtc_logging_message_filter.h"
23 #include "content/renderer/media/webrtc_uma_histograms.h" 23 #include "content/renderer/media/webrtc_uma_histograms.h"
24 #include "content/renderer/p2p/ipc_network_manager.h" 24 #include "content/renderer/p2p/ipc_network_manager.h"
25 #include "content/renderer/p2p/ipc_socket_factory.h" 25 #include "content/renderer/p2p/ipc_socket_factory.h"
26 #include "content/renderer/p2p/port_allocator.h" 26 #include "content/renderer/p2p/port_allocator.h"
27 #include "content/renderer/render_thread_impl.h" 27 #include "content/renderer/render_thread_impl.h"
28 #include "jingle/glue/thread_wrapper.h" 28 #include "jingle/glue/thread_wrapper.h"
29 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaConstraints .h" 29 #include "third_party/WebKit/public/platform/WebMediaConstraints.h"
30 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStream.h" 30 #include "third_party/WebKit/public/platform/WebMediaStream.h"
31 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamSourc e.h" 31 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h"
32 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamTrack .h" 32 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
33 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" 33 #include "third_party/WebKit/public/platform/WebURL.h"
34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
36 36
37 #if defined(USE_OPENSSL) 37 #if defined(USE_OPENSSL)
38 #include "third_party/libjingle/source/talk/base/ssladapter.h" 38 #include "third_party/libjingle/source/talk/base/ssladapter.h"
39 #else 39 #else
40 #include "net/socket/nss_ssl_util.h" 40 #include "net/socket/nss_ssl_util.h"
41 #endif 41 #endif
42 42
43 namespace content { 43 namespace content {
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 void MediaStreamDependencyFactory::CreateWebRtcLoggingHandler( 794 void MediaStreamDependencyFactory::CreateWebRtcLoggingHandler(
795 WebRtcLoggingMessageFilter* filter, 795 WebRtcLoggingMessageFilter* filter,
796 const std::string& app_session_id, 796 const std::string& app_session_id,
797 const std::string& app_url) { 797 const std::string& app_url) {
798 WebRtcLoggingHandlerImpl* handler = 798 WebRtcLoggingHandlerImpl* handler =
799 new WebRtcLoggingHandlerImpl(filter->io_message_loop()); 799 new WebRtcLoggingHandlerImpl(filter->io_message_loop());
800 filter->InitLogging(handler, app_session_id, app_url); 800 filter->InitLogging(handler, app_session_id, app_url);
801 } 801 }
802 802
803 } // namespace content 803 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/media_stream_center.cc ('k') | content/renderer/media/media_stream_dependency_factory_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698