| Index: components/history/core/browser/history_database.cc
|
| diff --git a/components/history/core/browser/history_database.cc b/components/history/core/browser/history_database.cc
|
| index 87653dff83e42dddd4946aa31de959a280d48962..888a30a80c30b9e32b842beac7c24d97c23b3ca9 100644
|
| --- a/components/history/core/browser/history_database.cc
|
| +++ b/components/history/core/browser/history_database.cc
|
| @@ -209,7 +209,7 @@ TopHostsList HistoryDatabase::TopHosts(int num_hosts) {
|
|
|
| int64 visit_count = url_sql.ColumnInt64(1);
|
| std::string host = url.host();
|
| - if (StartsWithASCII(host, "www.", true))
|
| + if (base::StartsWithASCII(host, "www.", true))
|
| host.assign(host, 4, std::string::npos);
|
| host_count[host] += visit_count;
|
|
|
|
|