summaryrefslogtreecommitdiffstats
path: root/ipc/attachment_broker_privileged_mac.cc
diff options
context:
space:
mode:
authortzik <tzik@chromium.org>2016-03-07 21:47:44 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-08 05:50:35 +0000
commit55e3e4d3c52bf99bd8a710e55b1dcccea5e3acc6 (patch)
tree6e1839d069b5e7b70951f0852891402a0730055d /ipc/attachment_broker_privileged_mac.cc
parentae1c7e7f600035bfb918ba8f217e9e0e5b505702 (diff)
downloadchromium_src-55e3e4d3c52bf99bd8a710e55b1dcccea5e3acc6.zip
chromium_src-55e3e4d3c52bf99bd8a710e55b1dcccea5e3acc6.tar.gz
chromium_src-55e3e4d3c52bf99bd8a710e55b1dcccea5e3acc6.tar.bz2
Replace base::Tuple in //ipc with std::tuple
BUG=554987 Review URL: https://codereview.chromium.org/1770013002 Cr-Commit-Position: refs/heads/master@{#379759}
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);