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

Unified Diff: components/html_viewer/blink_url_request_type_converters.cc

Issue 1172753003: Move LowerCaseEqualsASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util
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
Index: components/html_viewer/blink_url_request_type_converters.cc
diff --git a/components/html_viewer/blink_url_request_type_converters.cc b/components/html_viewer/blink_url_request_type_converters.cc
index 9e6a40d4c98f3d98803b933da4107f3e08da4752..339db95c79c6ce145cd10fd742db41168426a64d 100644
--- a/components/html_viewer/blink_url_request_type_converters.cc
+++ b/components/html_viewer/blink_url_request_type_converters.cc
@@ -23,7 +23,7 @@ class HeaderFlattener : public blink::WebHTTPHeaderVisitor {
const std::string& name_latin1 = name.latin1();
const std::string& value_latin1 = value.latin1();
- if (LowerCaseEqualsASCII(name_latin1, "accept"))
+ if (base::LowerCaseEqualsASCII(name_latin1, "accept"))
has_accept_header_ = true;
HttpHeaderPtr header = HttpHeader::New();
« no previous file with comments | « components/history/core/browser/visitsegment_database.cc ('k') | components/metrics/serialization/serialization_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698