| Index: blimp/client/feature/compositor/blimp_input_manager.cc
|
| diff --git a/blimp/client/feature/compositor/blimp_input_manager.cc b/blimp/client/feature/compositor/blimp_input_manager.cc
|
| index 44a367f48255ed4327a2f179c83d193f69efc038..f1d106f2d07defae6347eb75debb7119977dcf94 100644
|
| --- a/blimp/client/feature/compositor/blimp_input_manager.cc
|
| +++ b/blimp/client/feature/compositor/blimp_input_manager.cc
|
| @@ -113,8 +113,8 @@ void BlimpInputManager::CreateInputHandlerWrapperOnCompositorThread(
|
| return;
|
|
|
| DCHECK(!input_handler_wrapper_);
|
| - input_handler_wrapper_ = base::WrapUnique(new BlimpInputHandlerWrapper(
|
| - main_task_runner_, input_manager_weak_ptr, input_handler.get()));
|
| + input_handler_wrapper_ = base::MakeUnique<BlimpInputHandlerWrapper>(
|
| + main_task_runner_, input_manager_weak_ptr, input_handler.get());
|
| }
|
|
|
| void BlimpInputManager::HandleWebGestureEventOnCompositorThread(
|
|
|