| Index: chrome/browser/ui/omnibox/omnibox_edit_model.cc
|
| diff --git a/chrome/browser/ui/omnibox/omnibox_edit_model.cc b/chrome/browser/ui/omnibox/omnibox_edit_model.cc
|
| index 3acba3ecea6edb82524d9858a897ab905b30603a..c94eaddd645ca53eed0bafe3d15221dfb9a8348e 100644
|
| --- a/chrome/browser/ui/omnibox/omnibox_edit_model.cc
|
| +++ b/chrome/browser/ui/omnibox/omnibox_edit_model.cc
|
| @@ -45,7 +45,7 @@
|
| #include "components/search_engines/template_url_prepopulate_data.h"
|
| #include "components/search_engines/template_url_service.h"
|
| #include "components/toolbar/toolbar_model.h"
|
| -#include "components/url_formatter/url_fixer.h"
|
| +#include "components/url_fixer/url_fixer.h"
|
| #include "ui/gfx/image/image.h"
|
| #include "url/url_util.h"
|
|
|
| @@ -310,8 +310,7 @@
|
| }
|
|
|
| GURL OmniboxEditModel::PermanentURL() {
|
| - return url_formatter::FixupURL(base::UTF16ToUTF8(permanent_text_),
|
| - std::string());
|
| + return url_fixer::FixupURL(base::UTF16ToUTF8(permanent_text_), std::string());
|
| }
|
|
|
| void OmniboxEditModel::SetUserText(const base::string16& text) {
|
|
|