Index: chrome/browser/ui/webui/net_internals/net_internals_ui.cc |
diff --git a/chrome/browser/ui/webui/net_internals/net_internals_ui.cc b/chrome/browser/ui/webui/net_internals/net_internals_ui.cc |
index 99a9a87504643633c712e6f5bcdb8441c9ee5fe6..45ed8af9c70d21d4c9e697bea24b8b56dc706661 100644 |
--- a/chrome/browser/ui/webui/net_internals/net_internals_ui.cc |
+++ b/chrome/browser/ui/webui/net_internals/net_internals_ui.cc |
@@ -45,10 +45,10 @@ |
#include "chrome/common/chrome_paths.h" |
#include "chrome/common/chrome_version_info.h" |
#include "chrome/common/logging_chrome.h" |
-#include "chrome/common/net/url_fixer_upper.h" |
#include "chrome/common/pref_names.h" |
#include "chrome/common/url_constants.h" |
#include "components/onc/onc_constants.h" |
+#include "components/url_fixer/url_fixer.h" |
#include "content/public/browser/browser_thread.h" |
#include "content/public/browser/notification_details.h" |
#include "content/public/browser/resource_dispatcher_host.h" |
@@ -1128,7 +1128,7 @@ void NetInternalsMessageHandler::IOThreadImpl::OnStartConnectionTests( |
// Try to fix-up the user provided URL into something valid. |
// For example, turn "www.google.com" into "http://www.google.com". |
- GURL url(URLFixerUpper::FixupURL(base::UTF16ToUTF8(url_str), std::string())); |
+ GURL url(url_fixer::FixupURL(base::UTF16ToUTF8(url_str), std::string())); |
connection_tester_.reset(new ConnectionTester( |
this, |