Index: net/tools/quic/spdy_utils.cc |
diff --git a/net/tools/quic/spdy_utils.cc b/net/tools/quic/spdy_utils.cc |
index 7f146493671ba931769e0f363ba4c46b27671e46..8fc5991d7441c93ef5f8b479af47d5f46bfbb64d 100644 |
--- a/net/tools/quic/spdy_utils.cc |
+++ b/net/tools/quic/spdy_utils.cc |
@@ -46,7 +46,7 @@ void PopulateSpdyHeaderBlock(const BalsaHeaders& headers, |
// This unfortunately involves loads of copying, but its the simplest way |
// to sort the headers and leverage the framer. |
string name = hi->first.as_string(); |
- StringToLowerASCII(&name); |
+ base::StringToLowerASCII(&name); |
SpdyHeaderBlock::iterator it = block->find(name); |
if (it != block->end()) { |
it->second.reserve(it->second.size() + 1 + hi->second.size()); |