| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 #endif | 192 #endif |
| 193 | 193 |
| 194 #ifdef ENABLE_VTUNE_JIT_INTERFACE | 194 #ifdef ENABLE_VTUNE_JIT_INTERFACE |
| 195 #include "v8/src/third_party/vtune/v8-vtune.h" | 195 #include "v8/src/third_party/vtune/v8-vtune.h" |
| 196 #endif | 196 #endif |
| 197 | 197 |
| 198 #if defined(USE_AURA) | 198 #if defined(USE_AURA) |
| 199 #include "content/public/common/service_manager_connection.h" | 199 #include "content/public/common/service_manager_connection.h" |
| 200 #include "content/renderer/mus/render_widget_mus_connection.h" | 200 #include "content/renderer/mus/render_widget_mus_connection.h" |
| 201 #include "content/renderer/mus/render_widget_window_tree_client_factory.h" | 201 #include "content/renderer/mus/render_widget_window_tree_client_factory.h" |
| 202 #include "services/ui/public/cpp/gpu_service.h" | 202 #include "services/ui/public/cpp/gpu/gpu_service.h" |
| 203 #endif | 203 #endif |
| 204 | 204 |
| 205 #if defined(ENABLE_IPC_FUZZER) | 205 #if defined(ENABLE_IPC_FUZZER) |
| 206 #include "content/common/external_ipc_dumper.h" | 206 #include "content/common/external_ipc_dumper.h" |
| 207 #endif | 207 #endif |
| 208 | 208 |
| 209 #if defined(OS_MACOSX) | 209 #if defined(OS_MACOSX) |
| 210 #include <malloc/malloc.h> | 210 #include <malloc/malloc.h> |
| 211 #else | 211 #else |
| 212 #include <malloc.h> | 212 #include <malloc.h> |
| (...skipping 2264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2477 } | 2477 } |
| 2478 } | 2478 } |
| 2479 | 2479 |
| 2480 void RenderThreadImpl::OnRendererInterfaceRequest( | 2480 void RenderThreadImpl::OnRendererInterfaceRequest( |
| 2481 mojom::RendererAssociatedRequest request) { | 2481 mojom::RendererAssociatedRequest request) { |
| 2482 DCHECK(!renderer_binding_.is_bound()); | 2482 DCHECK(!renderer_binding_.is_bound()); |
| 2483 renderer_binding_.Bind(std::move(request)); | 2483 renderer_binding_.Bind(std::move(request)); |
| 2484 } | 2484 } |
| 2485 | 2485 |
| 2486 } // namespace content | 2486 } // namespace content |
| OLD | NEW |