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

Unified Diff: components/history/core/browser/visitsegment_database.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/history/core/browser/visitsegment_database.cc
diff --git a/components/history/core/browser/visitsegment_database.cc b/components/history/core/browser/visitsegment_database.cc
index 7beabd0f5178fbfbeb86922f8e273916741b8ad5..891c1b5b38fdcc06e2895d98027a2964359583bc 100644
--- a/components/history/core/browser/visitsegment_database.cc
+++ b/components/history/core/browser/visitsegment_database.cc
@@ -108,7 +108,7 @@ std::string VisitSegmentDatabase::ComputeSegmentName(const GURL& url) {
const char* host_c = host.c_str();
// Remove www. to avoid some dups.
if (static_cast<int>(host.size()) > kWWWDotLen &&
- LowerCaseEqualsASCII(host_c, host_c + kWWWDotLen, kWWWDot)) {
+ base::LowerCaseEqualsASCII(host_c, host_c + kWWWDotLen, kWWWDot)) {
r.SetHost(host.c_str(),
url::Component(kWWWDotLen,
static_cast<int>(host.size()) - kWWWDotLen));
« no previous file with comments | « components/google/core/browser/google_util.cc ('k') | components/html_viewer/blink_url_request_type_converters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698