| Index: content/child/process_control_impl.cc
|
| diff --git a/content/child/process_control_impl.cc b/content/child/process_control_impl.cc
|
| index 2954486b9ca3b350ce9d2572f52a0e0c866dc92b..2dece52a59eeff5be3da2226aee3fdda53e79510 100644
|
| --- a/content/child/process_control_impl.cc
|
| +++ b/content/child/process_control_impl.cc
|
| @@ -21,7 +21,7 @@ ProcessControlImpl::~ProcessControlImpl() {
|
|
|
| void ProcessControlImpl::LoadApplication(
|
| const mojo::String& name,
|
| - shell::mojom::ShellClientRequest request,
|
| + shell::mojom::ServiceRequest request,
|
| const LoadApplicationCallback& callback) {
|
| // Only register apps on first run.
|
| if (!has_registered_apps_) {
|
| @@ -46,7 +46,7 @@ void ProcessControlImpl::LoadApplication(
|
| }
|
|
|
| callback.Run(true);
|
| - it->second->BindShellClientRequest(std::move(request));
|
| + it->second->BindServiceRequest(std::move(request));
|
| }
|
|
|
| } // namespace content
|
|
|