| Index: chrome/browser/download/download_query.cc
 | 
| diff --git a/chrome/browser/download/download_query.cc b/chrome/browser/download/download_query.cc
 | 
| index f8008889ce1dbc4e8caab4fa069fbd862bd638c1..456f4cc0a0c68fa5fe7306cd1f8dfa0cc9c3625e 100644
 | 
| --- a/chrome/browser/download/download_query.cc
 | 
| +++ b/chrome/browser/download/download_query.cc
 | 
| @@ -25,9 +25,9 @@
 | 
|  #include "base/values.h"
 | 
|  #include "chrome/browser/profiles/profile.h"
 | 
|  #include "chrome/common/pref_names.h"
 | 
| -#include "components/url_formatter/url_formatter.h"
 | 
|  #include "content/public/browser/content_browser_client.h"
 | 
|  #include "content/public/browser/download_item.h"
 | 
| +#include "net/base/net_util.h"
 | 
|  #include "third_party/re2/re2/re2.h"
 | 
|  #include "url/gurl.h"
 | 
|  
 | 
| @@ -77,7 +77,7 @@
 | 
|    base::string16 url_formatted = url_raw;
 | 
|    if (item.GetBrowserContext()) {
 | 
|      Profile* profile = Profile::FromBrowserContext(item.GetBrowserContext());
 | 
| -    url_formatted = url_formatter::FormatUrl(
 | 
| +    url_formatted = net::FormatUrl(
 | 
|          item.GetOriginalUrl(),
 | 
|          profile->GetPrefs()->GetString(prefs::kAcceptLanguages));
 | 
|    }
 | 
| 
 |