| Index: ipc/handle_attachment_win.h
|
| diff --git a/ipc/handle_attachment_win.h b/ipc/handle_attachment_win.h
|
| index ff0ce91a851950d54fbeee15fe3e4fe64c550c9d..cfe56a36bd81c95373b70d9f43f905f259d8f236 100644
|
| --- a/ipc/handle_attachment_win.h
|
| +++ b/ipc/handle_attachment_win.h
|
| @@ -29,12 +29,10 @@ class IPC_EXPORT HandleAttachmentWin : public BrokerableAttachment {
|
|
|
| WireFormat(int32_t handle,
|
| const base::ProcessId& destination_process,
|
| - HandleWin::Permissions permissions,
|
| - const AttachmentId& attachment_id)
|
| + HandleWin::Permissions permissions)
|
| : handle(handle),
|
| destination_process(destination_process),
|
| - permissions(permissions),
|
| - attachment_id(attachment_id) {}
|
| + permissions(permissions) {}
|
|
|
| // The HANDLE that is intended for duplication, or the HANDLE that has been
|
| // duplicated, depending on context.
|
| @@ -50,8 +48,6 @@ class IPC_EXPORT HandleAttachmentWin : public BrokerableAttachment {
|
|
|
| // The permissions to use when duplicating the handle.
|
| HandleWin::Permissions permissions;
|
| -
|
| - AttachmentId attachment_id;
|
| };
|
|
|
| // This constructor makes a copy of |handle| and takes ownership of the
|
|
|