Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11143)

Unified Diff: chrome/renderer/safe_browsing/phishing_classifier.cc

Issue 1176583003: Move EqualsASCII to the base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util2
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/net/net_error_helper.cc ('k') | chrome/renderer/web_apps.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « chrome/renderer/net/net_error_helper.cc ('k') | chrome/renderer/web_apps.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698