| Index: mojo/edk/system/channel.cc
|
| diff --git a/mojo/edk/system/channel.cc b/mojo/edk/system/channel.cc
|
| index d22297d666a38f17db58991b07e5ddd2f1bffb07..8889919992a9e2949561b7c73c66016040cf3f34 100644
|
| --- a/mojo/edk/system/channel.cc
|
| +++ b/mojo/edk/system/channel.cc
|
| @@ -238,14 +238,6 @@ void Channel::SerializeEndpointWithRemotePeer(
|
| << s->receiver_endpoint_id << ")";
|
| }
|
|
|
| -void Channel::SerializeEndpoint(scoped_refptr<ChannelEndpoint> endpoint,
|
| - void* destination) {
|
| - SerializedEndpoint* s = static_cast<SerializedEndpoint*>(destination);
|
| - s->receiver_endpoint_id = AttachAndRunEndpoint(endpoint);
|
| - DVLOG(2) << "Serializing endpoint (remote ID = " << s->receiver_endpoint_id
|
| - << ")";
|
| -}
|
| -
|
| scoped_refptr<IncomingEndpoint> Channel::DeserializeEndpoint(
|
| const void* source) {
|
| const SerializedEndpoint* s = static_cast<const SerializedEndpoint*>(source);
|
|
|