Index: net/tools/quic/spdy_balsa_utils.cc |
diff --git a/net/tools/quic/spdy_balsa_utils.cc b/net/tools/quic/spdy_balsa_utils.cc |
index 76a3bdcb99b68b2375e4554a00a019396b497cae..29d0c9003f9e3e2a0c8bc4a8d886933584ec2725 100644 |
--- a/net/tools/quic/spdy_balsa_utils.cc |
+++ b/net/tools/quic/spdy_balsa_utils.cc |
@@ -50,8 +50,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(); |
- base::StringToLowerASCII(&name); |
+ string name = base::ToLowerASCII(hi->first.as_string()); |
SpdyHeaderBlock::iterator it = block->find(name); |
if (it != block->end()) { |
it->second.reserve(it->second.size() + 1 + hi->second.size()); |