summaryrefslogtreecommitdiffstats
path: root/ipc/attachment_broker_privileged_mac.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/attachment_broker_privileged_mac.cc')
-rw-r--r--ipc/attachment_broker_privileged_mac.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipc/attachment_broker_privileged_mac.cc b/ipc/attachment_broker_privileged_mac.cc
index c5bed27..725085b 100644
--- a/ipc/attachment_broker_privileged_mac.cc
+++ b/ipc/attachment_broker_privileged_mac.cc
@@ -6,6 +6,8 @@
#include <stdint.h>
+#include <tuple>
+
#include "base/mac/scoped_mach_port.h"
#include "base/memory/shared_memory.h"
#include "base/process/port_provider_mac.h"
@@ -183,7 +185,7 @@ void AttachmentBrokerPrivilegedMac::OnDuplicateMachPort(
return;
}
IPC::internal::MachPortAttachmentMac::WireFormat wire_format =
- base::get<0>(param);
+ std::get<0>(param);
if (wire_format.destination_process == base::kNullProcessId) {
LogError(NO_DESTINATION);