| Index: ipc/handle_attachment_win.cc
|
| diff --git a/ipc/handle_attachment_win.cc b/ipc/handle_attachment_win.cc
|
| index cb6a7bacfc2f466a4f000dc25d0d5554be803dca..53d589bc8f182e1ca8f86da3ebf0d04f1eae342b 100644
|
| --- a/ipc/handle_attachment_win.cc
|
| +++ b/ipc/handle_attachment_win.cc
|
| @@ -29,8 +29,7 @@ HandleAttachmentWin::HandleAttachmentWin(const HANDLE& handle,
|
| : handle_(handle), permissions_(HandleWin::INVALID), owns_handle_(true) {}
|
|
|
| HandleAttachmentWin::HandleAttachmentWin(const WireFormat& wire_format)
|
| - : BrokerableAttachment(wire_format.attachment_id),
|
| - handle_(LongToHandle(wire_format.handle)),
|
| + : handle_(LongToHandle(wire_format.handle)),
|
| permissions_(wire_format.permissions),
|
| owns_handle_(true) {}
|
|
|
| @@ -46,8 +45,7 @@ HandleAttachmentWin::BrokerableType HandleAttachmentWin::GetBrokerableType()
|
|
|
| HandleAttachmentWin::WireFormat HandleAttachmentWin::GetWireFormat(
|
| const base::ProcessId& destination) const {
|
| - return WireFormat(HandleToLong(handle_), destination, permissions_,
|
| - GetIdentifier());
|
| + return WireFormat(HandleToLong(handle_), destination, permissions_);
|
| }
|
|
|
| } // namespace internal
|
|
|