| Index: mojo/public/cpp/bindings/lib/associated_interface_ptr_state.h | 
| diff --git a/mojo/public/cpp/bindings/lib/associated_interface_ptr_state.h b/mojo/public/cpp/bindings/lib/associated_interface_ptr_state.h | 
| index a4b51882d202ce2f94464d190af4e43e2e28f9c8..5544ce03ee0e140b16ad35584cf5c324163dd65e 100644 | 
| --- a/mojo/public/cpp/bindings/lib/associated_interface_ptr_state.h | 
| +++ b/mojo/public/cpp/bindings/lib/associated_interface_ptr_state.h | 
| @@ -107,15 +107,16 @@ class AssociatedInterfacePtrState { | 
| return endpoint_client_ ? endpoint_client_->encountered_error() : false; | 
| } | 
|  | 
| -  void set_connection_error_handler(const base::Closure& error_handler) { | 
| +  void set_connection_error_handler(base::OnceClosure error_handler) { | 
| DCHECK(endpoint_client_); | 
| -    endpoint_client_->set_connection_error_handler(error_handler); | 
| +    endpoint_client_->set_connection_error_handler(std::move(error_handler)); | 
| } | 
|  | 
| void set_connection_error_with_reason_handler( | 
| -      const ConnectionErrorWithReasonCallback& error_handler) { | 
| +      ConnectionErrorWithReasonCallback error_handler) { | 
| DCHECK(endpoint_client_); | 
| -    endpoint_client_->set_connection_error_with_reason_handler(error_handler); | 
| +    endpoint_client_->set_connection_error_with_reason_handler( | 
| +        std::move(error_handler)); | 
| } | 
|  | 
| // Returns true if bound and awaiting a response to a message. | 
|  |