| Index: chrome/renderer/safe_browsing/phishing_classifier.cc
|
| diff --git a/chrome/renderer/safe_browsing/phishing_classifier.cc b/chrome/renderer/safe_browsing/phishing_classifier.cc
|
| index 78d67a2a3b17b278734efc7bb6e201753d46dfd0..d731a76e1a3f705aa7722fac57188b88856f8a60 100644
|
| --- a/chrome/renderer/safe_browsing/phishing_classifier.cc
|
| +++ b/chrome/renderer/safe_browsing/phishing_classifier.cc
|
| @@ -126,7 +126,7 @@ void PhishingClassifier::BeginFeatureExtraction() {
|
| }
|
|
|
| blink::WebDataSource* ds = frame->dataSource();
|
| - if (!ds || !EqualsASCII(ds->request().httpMethod(), "GET")) {
|
| + if (!ds || !base::EqualsASCII(ds->request().httpMethod(), "GET")) {
|
| RunFailureCallback();
|
| return;
|
| }
|
|
|