| Index: chrome/browser/prefs/session_startup_pref.cc
|
| diff --git a/chrome/browser/prefs/session_startup_pref.cc b/chrome/browser/prefs/session_startup_pref.cc
|
| index b7095857b15c8dc7a03884e02649af442d95edb6..9bc0c55a92f2be67447a96aa6717826a9210d8c7 100644
|
| --- a/chrome/browser/prefs/session_startup_pref.cc
|
| +++ b/chrome/browser/prefs/session_startup_pref.cc
|
| @@ -13,9 +13,9 @@
|
| #include "base/values.h"
|
| #include "base/version.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| -#include "chrome/common/net/url_fixer_upper.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "components/pref_registry/pref_registry_syncable.h"
|
| +#include "components/url_fixer/url_fixer.h"
|
|
|
| #if defined(OS_MACOSX)
|
| #include "chrome/browser/ui/cocoa/window_restore_utils.h"
|
| @@ -54,7 +54,7 @@ void URLListToPref(const base::ListValue* url_list, SessionStartupPref* pref) {
|
| for (size_t i = 0; i < url_list->GetSize(); ++i) {
|
| std::string url_text;
|
| if (url_list->GetString(i, &url_text)) {
|
| - GURL fixed_url = URLFixerUpper::FixupURL(url_text, std::string());
|
| + GURL fixed_url = url_fixer::FixupURL(url_text, std::string());
|
| pref->urls.push_back(fixed_url);
|
| }
|
| }
|
|
|