Index: content/renderer/p2p/port_allocator.cc |
diff --git a/content/renderer/p2p/port_allocator.cc b/content/renderer/p2p/port_allocator.cc |
index 1be81520a548e5b80d652d8d8c24811a598bb84b..6c60f4717373ecc18f902b18a41f0659ed844436 100644 |
--- a/content/renderer/p2p/port_allocator.cc |
+++ b/content/renderer/p2p/port_allocator.cc |
@@ -225,8 +225,8 @@ void P2PPortAllocatorSession::ParseRelayResponse() { |
it != value_pairs.end(); ++it) { |
std::string key; |
std::string value; |
- TrimWhitespaceASCII(it->first, TRIM_ALL, &key); |
- TrimWhitespaceASCII(it->second, TRIM_ALL, &value); |
+ base::TrimWhitespaceASCII(it->first, base::TRIM_ALL, &key); |
+ base::TrimWhitespaceASCII(it->second, base::TRIM_ALL, &value); |
if (key == "username") { |
if (value != username()) { |