| Index: mojo/public/cpp/bindings/associated_interface_request.h
|
| diff --git a/mojo/public/cpp/bindings/associated_interface_request.h b/mojo/public/cpp/bindings/associated_interface_request.h
|
| index dc437bb5e025e7401dde9270a1a7b87593343e0e..30fcd16ec14496d30ae318aa240ed46cedb0b75a 100644
|
| --- a/mojo/public/cpp/bindings/associated_interface_request.h
|
| +++ b/mojo/public/cpp/bindings/associated_interface_request.h
|
| @@ -16,8 +16,6 @@ namespace mojo {
|
| // similar to InterfaceRequest except that it doesn't own a message pipe handle.
|
| template <typename Interface>
|
| class AssociatedInterfaceRequest {
|
| - DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(AssociatedInterfaceRequest);
|
| -
|
| public:
|
| // Constructs an empty AssociatedInterfaceRequest, representing that the
|
| // client is not requesting an implementation of Interface.
|
| @@ -68,6 +66,8 @@ class AssociatedInterfaceRequest {
|
|
|
| private:
|
| ScopedInterfaceEndpointHandle handle_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(AssociatedInterfaceRequest);
|
| };
|
|
|
| // Makes an AssociatedInterfaceRequest bound to the specified associated
|
|
|