summaryrefslogtreecommitdiffstats
path: root/chrome/common/custom_handlers/protocol_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/custom_handlers/protocol_handler.cc')
-rw-r--r--chrome/common/custom_handlers/protocol_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/custom_handlers/protocol_handler.cc b/chrome/common/custom_handlers/protocol_handler.cc
index 8ede72d..75fc274 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);
}