| Index: chrome/browser/net/predictor.cc
|
| diff --git a/chrome/browser/net/predictor.cc b/chrome/browser/net/predictor.cc
|
| index 46dcf1ff5a6e167071867223a336c9b76710f2b7..18e76f31fb91182bc74c8b9bae390e977108080b 100644
|
| --- a/chrome/browser/net/predictor.cc
|
| +++ b/chrome/browser/net/predictor.cc
|
| @@ -679,7 +679,7 @@ GURL Predictor::CanonicalizeUrl(const GURL& url) {
|
| std::string scheme;
|
| if (url.has_scheme()) {
|
| scheme = url.scheme();
|
| - if (scheme != "http" && scheme != "https")
|
| + if (scheme != "http" && scheme != "https" && scheme != "httpsv")
|
| return GURL::EmptyGURL();
|
| if (url.has_port())
|
| return url.GetWithEmptyPath();
|
|
|