| OLD | NEW |
| 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/render_thread_impl.h" | 5 #include "content/renderer/render_thread_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 #include "content/renderer/media/android/stream_texture_factory.h" | 173 #include "content/renderer/media/android/stream_texture_factory.h" |
| 174 #include "media/base/android/media_codec_util.h" | 174 #include "media/base/android/media_codec_util.h" |
| 175 #endif | 175 #endif |
| 176 | 176 |
| 177 #if defined(OS_MACOSX) | 177 #if defined(OS_MACOSX) |
| 178 #include "base/mac/mac_util.h" | 178 #include "base/mac/mac_util.h" |
| 179 #include "content/renderer/theme_helper_mac.h" | 179 #include "content/renderer/theme_helper_mac.h" |
| 180 #include "content/renderer/webscrollbarbehavior_impl_mac.h" | 180 #include "content/renderer/webscrollbarbehavior_impl_mac.h" |
| 181 #endif | 181 #endif |
| 182 | 182 |
| 183 #if defined(OS_POSIX) | |
| 184 #include "ipc/ipc_channel_posix.h" | |
| 185 #endif | |
| 186 | |
| 187 #if defined(OS_WIN) | 183 #if defined(OS_WIN) |
| 188 #include <windows.h> | 184 #include <windows.h> |
| 189 #include <objbase.h> | 185 #include <objbase.h> |
| 190 #endif | 186 #endif |
| 191 | 187 |
| 192 #if defined(ENABLE_WEBRTC) | 188 #if defined(ENABLE_WEBRTC) |
| 193 #include "content/renderer/media/aec_dump_message_filter.h" | 189 #include "content/renderer/media/aec_dump_message_filter.h" |
| 194 #include "content/renderer/media/peer_connection_tracker.h" | 190 #include "content/renderer/media/peer_connection_tracker.h" |
| 195 #include "content/renderer/media/rtc_peer_connection_handler.h" | 191 #include "content/renderer/media/rtc_peer_connection_handler.h" |
| 196 #include "content/renderer/media/webrtc/peer_connection_dependency_factory.h" | 192 #include "content/renderer/media/webrtc/peer_connection_dependency_factory.h" |
| (...skipping 2282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2479 } | 2475 } |
| 2480 } | 2476 } |
| 2481 | 2477 |
| 2482 void RenderThreadImpl::OnRendererInterfaceRequest( | 2478 void RenderThreadImpl::OnRendererInterfaceRequest( |
| 2483 mojom::RendererAssociatedRequest request) { | 2479 mojom::RendererAssociatedRequest request) { |
| 2484 DCHECK(!renderer_binding_.is_bound()); | 2480 DCHECK(!renderer_binding_.is_bound()); |
| 2485 renderer_binding_.Bind(std::move(request)); | 2481 renderer_binding_.Bind(std::move(request)); |
| 2486 } | 2482 } |
| 2487 | 2483 |
| 2488 } // namespace content | 2484 } // namespace content |
| OLD | NEW |