| 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 3cc51941e2218fad041ffde9f9d78b9816be1c02..f4545492466dfed8670759f6c6029d1723e10561 100644
|
| --- a/chrome/renderer/safe_browsing/phishing_classifier.cc
|
| +++ b/chrome/renderer/safe_browsing/phishing_classifier.cc
|
| @@ -209,7 +209,7 @@ void PhishingClassifier::TermExtractionFinished(bool success) {
|
| void PhishingClassifier::CheckNoPendingClassification() {
|
| DCHECK(done_callback_.is_null());
|
| DCHECK(!page_text_);
|
| - if (done_callback_.is_null() || page_text_) {
|
| + if (!done_callback_.is_null() || page_text_) {
|
| LOG(ERROR) << "Classification in progress, missing call to "
|
| << "CancelPendingClassification";
|
| UMA_HISTOGRAM_COUNTS("SBClientPhishing.CheckNoPendingClassificationFailed",
|
|
|