| Index: chrome/browser/extensions/extension_tab_util.cc
|
| diff --git a/chrome/browser/extensions/extension_tab_util.cc b/chrome/browser/extensions/extension_tab_util.cc
|
| index 384c94d02d22ec80fbcbd8b740115e7a2e445dc8..22a2dea8a84f6fca5f7b25e55914711d22b40024 100644
|
| --- a/chrome/browser/extensions/extension_tab_util.cc
|
| +++ b/chrome/browser/extensions/extension_tab_util.cc
|
| @@ -25,7 +25,7 @@
|
| #include "chrome/browser/ui/tabs/tab_utils.h"
|
| #include "chrome/common/extensions/api/tabs.h"
|
| #include "chrome/common/url_constants.h"
|
| -#include "components/url_fixer/url_fixer.h"
|
| +#include "components/url_formatter/url_fixer.h"
|
| #include "content/public/browser/favicon_status.h"
|
| #include "content/public/browser/navigation_entry.h"
|
| #include "content/public/browser/web_contents.h"
|
| @@ -551,7 +551,7 @@ bool ExtensionTabUtil::IsKillURL(const GURL& url) {
|
|
|
| // Check a fixed-up URL, to normalize the scheme and parse hosts correctly.
|
| GURL fixed_url =
|
| - url_fixer::FixupURL(url.possibly_invalid_spec(), std::string());
|
| + url_formatter::FixupURL(url.possibly_invalid_spec(), std::string());
|
| if (!fixed_url.SchemeIs(content::kChromeUIScheme))
|
| return false;
|
|
|
|
|