| Index: chrome/browser/autocomplete/autocomplete_match.cc
|
| diff --git a/chrome/browser/autocomplete/autocomplete_match.cc b/chrome/browser/autocomplete/autocomplete_match.cc
|
| index 4f6714744af6cf62e3c439f930a685cd3ecec976..6829eaae5509fbce06bd537cfd357c8423081f98 100644
|
| --- a/chrome/browser/autocomplete/autocomplete_match.cc
|
| +++ b/chrome/browser/autocomplete/autocomplete_match.cc
|
| @@ -17,6 +17,7 @@
|
| #include "chrome/browser/search_engines/template_url_service_factory.h"
|
| #include "content/public/common/url_constants.h"
|
| #include "grit/theme_resources.h"
|
| +#include "url/url_constants.h"
|
|
|
| namespace {
|
|
|
| @@ -376,10 +377,10 @@ void AutocompleteMatch::ComputeStrippedDestinationURL(Profile* profile) {
|
| }
|
|
|
| // Replace https protocol with http protocol.
|
| - if (stripped_destination_url.SchemeIs(content::kHttpsScheme)) {
|
| + if (stripped_destination_url.SchemeIs(url::kHttpsScheme)) {
|
| replacements.SetScheme(
|
| - content::kHttpScheme,
|
| - url_parse::Component(0, strlen(content::kHttpScheme)));
|
| + url::kHttpScheme,
|
| + url_parse::Component(0, strlen(url::kHttpScheme)));
|
| needs_replacement = true;
|
| }
|
|
|
|
|