| 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));
|
|
|