| Index: services/ui/input_manager/input_associate.cc
|
| diff --git a/services/ui/input_manager/input_associate.cc b/services/ui/input_manager/input_associate.cc
|
| index ad34f1bafda16f44890430346a350cae389fbb79..bbe21eef4d2f9b3ac4f7d2c0769cba8ddcc1a030 100644
|
| --- a/services/ui/input_manager/input_associate.cc
|
| +++ b/services/ui/input_manager/input_associate.cc
|
| @@ -49,9 +49,9 @@ void InputAssociate::ConnectToViewService(
|
| DCHECK(view_token); // checked by mojom
|
|
|
| if (service_name == mojo::ui::InputConnection::Name_) {
|
| - CreateInputConnection(
|
| - view_token.Pass(),
|
| - mojo::MakeRequest<mojo::ui::InputConnection>(client_handle.Pass()));
|
| + CreateInputConnection(view_token.Pass(),
|
| + mojo::InterfaceRequest<mojo::ui::InputConnection>(
|
| + client_handle.Pass()));
|
| }
|
| }
|
|
|
| @@ -62,9 +62,9 @@ void InputAssociate::ConnectToViewTreeService(
|
| DCHECK(view_tree_token); // checked by mojom
|
|
|
| if (service_name == mojo::ui::InputDispatcher::Name_) {
|
| - CreateInputDispatcher(
|
| - view_tree_token.Pass(),
|
| - mojo::MakeRequest<mojo::ui::InputDispatcher>(client_handle.Pass()));
|
| + CreateInputDispatcher(view_tree_token.Pass(),
|
| + mojo::InterfaceRequest<mojo::ui::InputDispatcher>(
|
| + client_handle.Pass()));
|
| }
|
| }
|
|
|
|
|