| Index: chrome/common/custom_handlers/protocol_handler.cc
|
| diff --git a/chrome/common/custom_handlers/protocol_handler.cc b/chrome/common/custom_handlers/protocol_handler.cc
|
| index 8ede72d129885b7eecd455286932829b2bdfda07..75fc2744310eb19e86b97f580b724ff5ca2dc328 100644
|
| --- a/chrome/common/custom_handlers/protocol_handler.cc
|
| +++ b/chrome/common/custom_handlers/protocol_handler.cc
|
| @@ -18,7 +18,7 @@ ProtocolHandler::ProtocolHandler(const std::string& protocol,
|
| ProtocolHandler ProtocolHandler::CreateProtocolHandler(
|
| const std::string& protocol,
|
| const GURL& url) {
|
| - std::string lower_protocol = base::StringToLowerASCII(protocol);
|
| + std::string lower_protocol = base::ToLowerASCII(protocol);
|
| return ProtocolHandler(lower_protocol, url);
|
| }
|
|
|
|
|