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