Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: ipc/mach_port_attachment_mac.h

Issue 2473993003: Delete IPC::ChannelPosix, IPC::ChannelWin and IPC::AttachmentBroker. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/ipc_test_base.cc ('k') | ipc/mach_port_attachment_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/mach_port_attachment_mac.h
diff --git a/ipc/mach_port_attachment_mac.h b/ipc/mach_port_attachment_mac.h
index 658cff428f9a51b963c6075c47b504961edf18fe..efc2c11a784a74f8af82fdadd1a467cc97d63a88 100644
--- a/ipc/mach_port_attachment_mac.h
+++ b/ipc/mach_port_attachment_mac.h
@@ -25,12 +25,8 @@ class IPC_EXPORT MachPortAttachmentMac : public BrokerableAttachment {
// constructor.
WireFormat() : mach_port(0), destination_process(0) {}
- WireFormat(uint32_t mach_port,
- const base::ProcessId& destination_process,
- const AttachmentId& attachment_id)
- : mach_port(mach_port),
- destination_process(destination_process),
- attachment_id(attachment_id) {}
+ WireFormat(uint32_t mach_port, const base::ProcessId& destination_process)
+ : mach_port(mach_port), destination_process(destination_process) {}
// The mach port that is intended for duplication, or the mach port that has
// been duplicated, depending on context.
@@ -42,8 +38,6 @@ class IPC_EXPORT MachPortAttachmentMac : public BrokerableAttachment {
// The id of the destination process that the handle is duplicated into.
base::ProcessId destination_process;
-
- AttachmentId attachment_id;
};
// This constructor increments the ref count of |mach_port_| and takes
« no previous file with comments | « ipc/ipc_test_base.cc ('k') | ipc/mach_port_attachment_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698