| Index: ipc/attachment_broker_privileged_mac.cc
|
| diff --git a/ipc/attachment_broker_privileged_mac.cc b/ipc/attachment_broker_privileged_mac.cc
|
| index c5bed27c68df42db1a48998bdfb970da606c35bb..725085bbb17f909a25ab400620f6743096fc4846 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);
|
|
|