Index: ipc/attachment_broker_privileged_win.cc |
diff --git a/ipc/attachment_broker_privileged_win.cc b/ipc/attachment_broker_privileged_win.cc |
index c749a09c9802eef8f9475880d4e8c2ca000017c5..3ce3ec5d6e7cfdefc909ea18382c0b6df5c2ebb9 100644 |
--- a/ipc/attachment_broker_privileged_win.cc |
+++ b/ipc/attachment_broker_privileged_win.cc |
@@ -6,6 +6,8 @@ |
#include <windows.h> |
+#include <tuple> |
+ |
#include "base/process/process.h" |
#include "ipc/attachment_broker_messages.h" |
#include "ipc/brokerable_attachment.h" |
@@ -59,7 +61,7 @@ void AttachmentBrokerPrivilegedWin::OnDuplicateWinHandle( |
if (!AttachmentBrokerMsg_DuplicateWinHandle::Read(&message, ¶m)) |
return; |
IPC::internal::HandleAttachmentWin::WireFormat wire_format = |
- base::get<0>(param); |
+ std::get<0>(param); |
if (wire_format.destination_process == base::kNullProcessId) { |
LogError(NO_DESTINATION); |