| Index: chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc
 | 
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc
 | 
| index 0ef71fe27d97776129831f1dc275610c20adf1f7..a5919234d3c0904f8fb0493afd4c4dae97295bb9 100644
 | 
| --- a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc
 | 
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc
 | 
| @@ -20,7 +20,7 @@
 | 
|  #include "components/bookmarks/browser/bookmark_utils.h"
 | 
|  #include "components/constrained_window/constrained_window_views.h"
 | 
|  #include "components/history/core/browser/history_service.h"
 | 
| -#include "components/url_fixer/url_fixer.h"
 | 
| +#include "components/url_formatter/url_fixer.h"
 | 
|  #include "components/user_prefs/user_prefs.h"
 | 
|  #include "ui/accessibility/ax_view_state.h"
 | 
|  #include "ui/base/l10n/l10n_util.h"
 | 
| @@ -440,7 +440,8 @@ void BookmarkEditorView::Reset() {
 | 
|  GURL BookmarkEditorView::GetInputURL() const {
 | 
|    if (details_.GetNodeType() == BookmarkNode::FOLDER)
 | 
|      return GURL();
 | 
| -  return url_fixer::FixupURL(base::UTF16ToUTF8(url_tf_->text()), std::string());
 | 
| +  return url_formatter::FixupURL(base::UTF16ToUTF8(url_tf_->text()),
 | 
| +                                 std::string());
 | 
|  }
 | 
|  
 | 
|  void BookmarkEditorView::UserInputChanged() {
 | 
| 
 |