| 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 45eb61f3182b36bb06c605f9302072776dcbad04..6ac0c78efe3740fb9ac52a4f370b64044abaaadd 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_formatter/url_fixer.h"
 | 
| +#include "components/url_fixer/url_fixer.h"
 | 
|  #include "content/public/browser/favicon_status.h"
 | 
|  #include "content/public/browser/navigation_entry.h"
 | 
|  #include "content/public/browser/web_contents.h"
 | 
| @@ -550,7 +550,7 @@
 | 
|  
 | 
|    // Check a fixed-up URL, to normalize the scheme and parse hosts correctly.
 | 
|    GURL fixed_url =
 | 
| -      url_formatter::FixupURL(url.possibly_invalid_spec(), std::string());
 | 
| +      url_fixer::FixupURL(url.possibly_invalid_spec(), std::string());
 | 
|    if (!fixed_url.SchemeIs(content::kChromeUIScheme))
 | 
|      return false;
 | 
|  
 | 
| 
 |