Index: content/browser/renderer_host/p2p/socket_host_test_utils.h |
diff --git a/content/browser/renderer_host/p2p/socket_host_test_utils.h b/content/browser/renderer_host/p2p/socket_host_test_utils.h |
index f1a60cc72a6cae8713b2d1b72f7c1e612c29a3be..e90fdb78a24d6e4800a877a4ec8fd3aaf4a0a932 100644 |
--- a/content/browser/renderer_host/p2p/socket_host_test_utils.h |
+++ b/content/browser/renderer_host/p2p/socket_host_test_utils.h |
@@ -7,6 +7,7 @@ |
#include <stdint.h> |
+#include <tuple> |
#include <vector> |
#include "content/common/p2p_messages.h" |
@@ -108,7 +109,7 @@ MATCHER_P(MatchPacketMessage, packet_content, "") { |
return false; |
P2PMsg_OnDataReceived::Param params; |
P2PMsg_OnDataReceived::Read(arg, ¶ms); |
- return base::get<2>(params) == packet_content; |
+ return std::get<2>(params) == packet_content; |
} |
MATCHER_P(MatchIncomingSocketMessage, address, "") { |
@@ -117,7 +118,7 @@ MATCHER_P(MatchIncomingSocketMessage, address, "") { |
P2PMsg_OnIncomingTcpConnection::Param params; |
P2PMsg_OnIncomingTcpConnection::Read( |
arg, ¶ms); |
- return base::get<1>(params) == address; |
+ return std::get<1>(params) == address; |
} |
#endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_ |