| Index: chrome/common/search_urls.cc
|
| diff --git a/chrome/common/search_urls.cc b/chrome/common/search_urls.cc
|
| index 98568429e5d2334348244c46976c1254fdfc6bc8..0c88d148934970c21f255cbc1296c58f57a3faff 100644
|
| --- a/chrome/common/search_urls.cc
|
| +++ b/chrome/common/search_urls.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "content/public/common/url_constants.h"
|
| #include "url/gurl.h"
|
| +#include "url/url_constants.h"
|
|
|
| namespace search {
|
|
|
| @@ -14,8 +15,8 @@ bool MatchesOrigin(const GURL& my_url, const GURL& other_url) {
|
| return my_url.host() == other_url.host() &&
|
| my_url.port() == other_url.port() &&
|
| (my_url.scheme() == other_url.scheme() ||
|
| - (my_url.SchemeIs(content::kHttpsScheme) &&
|
| - other_url.SchemeIs(content::kHttpScheme)));
|
| + (my_url.SchemeIs(url::kHttpsScheme) &&
|
| + other_url.SchemeIs(url::kHttpScheme)));
|
| }
|
| } // namespace
|
|
|
|
|