OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/browser/frame_host/render_frame_host_impl.h" | 5 #include "content/browser/frame_host/render_frame_host_impl.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 2376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2387 // An error page is expected to commit, hence why is_loading_ is set to true. | 2387 // An error page is expected to commit, hence why is_loading_ is set to true. |
2388 is_loading_ = true; | 2388 is_loading_ = true; |
2389 frame_tree_node_->ResetNavigationRequest(true); | 2389 frame_tree_node_->ResetNavigationRequest(true); |
2390 } | 2390 } |
2391 | 2391 |
2392 void RenderFrameHostImpl::SetUpMojoIfNeeded() { | 2392 void RenderFrameHostImpl::SetUpMojoIfNeeded() { |
2393 if (interface_registry_.get()) | 2393 if (interface_registry_.get()) |
2394 return; | 2394 return; |
2395 | 2395 |
2396 interface_registry_.reset(new shell::InterfaceRegistry(nullptr)); | 2396 interface_registry_.reset(new shell::InterfaceRegistry(nullptr)); |
| 2397 // Even in the case that render process host service registry does not exist, |
| 2398 // for example, as to test codes using MockRenderProcessHost, |
| 2399 // still create |remote_interfaces| to enable register local implementations. |
| 2400 remote_interfaces_.reset(new shell::InterfaceProvider(nullptr)); |
2397 if (!GetProcess()->GetServiceRegistry()) | 2401 if (!GetProcess()->GetServiceRegistry()) |
2398 return; | 2402 return; |
2399 | 2403 |
2400 RegisterMojoInterfaces(); | 2404 RegisterMojoInterfaces(); |
2401 mojom::FrameFactoryPtr frame_factory; | 2405 mojom::FrameFactoryPtr frame_factory; |
2402 GetProcess()->GetServiceRegistry()->ConnectToRemoteService( | 2406 GetProcess()->GetServiceRegistry()->ConnectToRemoteService( |
2403 mojo::GetProxy(&frame_factory)); | 2407 mojo::GetProxy(&frame_factory)); |
2404 | 2408 |
2405 frame_factory->CreateFrame(routing_id_, GetProxy(&frame_), | 2409 frame_factory->CreateFrame(routing_id_, GetProxy(&frame_), |
2406 frame_host_binding_.CreateInterfacePtrAndBind()); | 2410 frame_host_binding_.CreateInterfacePtrAndBind()); |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2960 // handler after it's destroyed so it can't run after the RFHI is destroyed. | 2964 // handler after it's destroyed so it can't run after the RFHI is destroyed. |
2961 web_bluetooth_service_->SetClientConnectionErrorHandler(base::Bind( | 2965 web_bluetooth_service_->SetClientConnectionErrorHandler(base::Bind( |
2962 &RenderFrameHostImpl::DeleteWebBluetoothService, base::Unretained(this))); | 2966 &RenderFrameHostImpl::DeleteWebBluetoothService, base::Unretained(this))); |
2963 } | 2967 } |
2964 | 2968 |
2965 void RenderFrameHostImpl::DeleteWebBluetoothService() { | 2969 void RenderFrameHostImpl::DeleteWebBluetoothService() { |
2966 web_bluetooth_service_.reset(); | 2970 web_bluetooth_service_.reset(); |
2967 } | 2971 } |
2968 | 2972 |
2969 } // namespace content | 2973 } // namespace content |
OLD | NEW |