| Index: content/browser/utility_process_host_impl.cc
|
| diff --git a/content/browser/utility_process_host_impl.cc b/content/browser/utility_process_host_impl.cc
|
| index 2c86e917814aa31ead60f52d66f38bac63b4473c..0f1fdf3fc5b8129759e2ae779dc9d313736cba27 100644
|
| --- a/content/browser/utility_process_host_impl.cc
|
| +++ b/content/browser/utility_process_host_impl.cc
|
| @@ -86,8 +86,8 @@ class UtilitySandboxedProcessLauncherDelegate
|
| UtilityMainThreadFactoryFunction g_utility_main_thread_factory = NULL;
|
|
|
| UtilityProcessHost* UtilityProcessHost::Create(
|
| - UtilityProcessHostClient* client,
|
| - base::SequencedTaskRunner* client_task_runner) {
|
| + const scoped_refptr<UtilityProcessHostClient>& client,
|
| + const scoped_refptr<base::SequencedTaskRunner>& client_task_runner) {
|
| return new UtilityProcessHostImpl(client, client_task_runner);
|
| }
|
|
|
| @@ -97,8 +97,8 @@ void UtilityProcessHostImpl::RegisterUtilityMainThreadFactory(
|
| }
|
|
|
| UtilityProcessHostImpl::UtilityProcessHostImpl(
|
| - UtilityProcessHostClient* client,
|
| - base::SequencedTaskRunner* client_task_runner)
|
| + const scoped_refptr<UtilityProcessHostClient>& client,
|
| + const scoped_refptr<base::SequencedTaskRunner>& client_task_runner)
|
| : client_(client),
|
| client_task_runner_(client_task_runner),
|
| is_batch_mode_(false),
|
|
|