Index: chrome/renderer/safe_browsing/phishing_dom_feature_extractor.cc |
diff --git a/chrome/renderer/safe_browsing/phishing_dom_feature_extractor.cc b/chrome/renderer/safe_browsing/phishing_dom_feature_extractor.cc |
index 821fe2edd1c231eac68e4b9bf9d0c36df545ebe1..ae5ad651aabfc555f8fed57aa85fbfbd2f5abb3a 100644 |
--- a/chrome/renderer/safe_browsing/phishing_dom_feature_extractor.cc |
+++ b/chrome/renderer/safe_browsing/phishing_dom_feature_extractor.cc |
@@ -323,7 +323,7 @@ void PhishingDOMFeatureExtractor::HandleInput( |
// WebFormControlElement::formControlType() for consistency with the |
// way the phishing classification model is created. |
std::string type = element.getAttribute("type").utf8(); |
- StringToLowerASCII(&type); |
+ base::StringToLowerASCII(&type); |
if (type == "password") { |
++page_feature_state_->num_pswd_inputs; |
} else if (type == "radio") { |