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 9ab463407056a8590117eb03520902419d65807b..76358d2fa4b981842714703cef5a87f172c02ec5 100644 |
--- a/content/browser/renderer_host/p2p/socket_host_test_utils.h |
+++ b/content/browser/renderer_host/p2p/socket_host_test_utils.h |
@@ -106,7 +106,7 @@ MATCHER_P(MatchPacketMessage, packet_content, "") { |
return false; |
P2PMsg_OnDataReceived::Param params; |
P2PMsg_OnDataReceived::Read(arg, ¶ms); |
- return get<2>(params) == packet_content; |
+ return base::get<2>(params) == packet_content; |
} |
MATCHER_P(MatchIncomingSocketMessage, address, "") { |
@@ -115,7 +115,7 @@ MATCHER_P(MatchIncomingSocketMessage, address, "") { |
P2PMsg_OnIncomingTcpConnection::Param params; |
P2PMsg_OnIncomingTcpConnection::Read( |
arg, ¶ms); |
- return get<1>(params) == address; |
+ return base::get<1>(params) == address; |
} |
#endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_ |