Index: net/tools/quic/quic_in_memory_cache.cc |
diff --git a/net/tools/quic/quic_in_memory_cache.cc b/net/tools/quic/quic_in_memory_cache.cc |
index 66f073a90f569314f8ee12e0c4d75ab9d43dd1ac..00b3e72f8be8bf388749de012966bf7c880d5ea6 100644 |
--- a/net/tools/quic/quic_in_memory_cache.cc |
+++ b/net/tools/quic/quic_in_memory_cache.cc |
@@ -208,7 +208,7 @@ void QuicInMemoryCache::AddSpecialResponse(StringPiece host, |
QuicInMemoryCache::QuicInMemoryCache() {} |
void QuicInMemoryCache::ResetForTests() { |
- STLDeleteValues(&responses_); |
+ base::STLDeleteValues(&responses_); |
server_push_resources_.clear(); |
} |
@@ -279,7 +279,7 @@ list<ServerPushInfo> QuicInMemoryCache::GetServerPushResources( |
} |
QuicInMemoryCache::~QuicInMemoryCache() { |
- STLDeleteValues(&responses_); |
+ base::STLDeleteValues(&responses_); |
} |
void QuicInMemoryCache::AddResponseImpl(StringPiece host, |
@@ -290,7 +290,7 @@ void QuicInMemoryCache::AddResponseImpl(StringPiece host, |
SpdyHeaderBlock response_trailers) { |
DCHECK(!host.empty()) << "Host must be populated, e.g. \"www.google.com\""; |
string key = GetKey(host, path); |
- if (ContainsKey(responses_, key)) { |
+ if (base::ContainsKey(responses_, key)) { |
QUIC_BUG << "Response for '" << key << "' already exists!"; |
return; |
} |