| Index: chrome/browser/history/visit_database.cc
|
| diff --git a/chrome/browser/history/visit_database.cc b/chrome/browser/history/visit_database.cc
|
| index ace5dac745af92e7bce2efb4c4f2fcbaefdaa164..738409ea4eb706a15604447316eaddab2c1b8b20 100644
|
| --- a/chrome/browser/history/visit_database.cc
|
| +++ b/chrome/browser/history/visit_database.cc
|
| @@ -435,7 +435,9 @@ bool VisitDatabase::GetRedirectToVisit(VisitID to_visit,
|
| bool VisitDatabase::GetVisitCountToHost(const GURL& url,
|
| int* count,
|
| base::Time* first_visit) {
|
| - if (!url.SchemeIs(chrome::kHttpScheme) && !url.SchemeIs(chrome::kHttpsScheme))
|
| + if (!url.SchemeIs(chrome::kHttpScheme) &&
|
| + !url.SchemeIs(chrome::kHttpsScheme) &&
|
| + !url.SchemeIs(chrome::kHttpsvScheme))
|
| return false;
|
|
|
| // We need to search for URLs with a matching host/port. One way to query for
|
|
|