diff options
Diffstat (limited to 'chrome/renderer/safe_browsing/phishing_classifier.cc')
-rw-r--r-- | chrome/renderer/safe_browsing/phishing_classifier.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/renderer/safe_browsing/phishing_classifier.cc b/chrome/renderer/safe_browsing/phishing_classifier.cc index e1d1926..91fa589 100644 --- a/chrome/renderer/safe_browsing/phishing_classifier.cc +++ b/chrome/renderer/safe_browsing/phishing_classifier.cc @@ -127,7 +127,9 @@ void PhishingClassifier::BeginFeatureExtraction() { } blink::WebDataSource* ds = frame->dataSource(); - if (!ds || !base::EqualsASCII(ds->request().httpMethod(), "GET")) { + if (!ds || + !base::EqualsASCII(base::StringPiece16(ds->request().httpMethod()), + "GET")) { RunFailureCallback(); return; } |