diff options
Diffstat (limited to 'chrome/browser/download/download_query.cc')
-rw-r--r-- | chrome/browser/download/download_query.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/download/download_query.cc b/chrome/browser/download/download_query.cc index 456f4cc..abebc6a 100644 --- a/chrome/browser/download/download_query.cc +++ b/chrome/browser/download/download_query.cc @@ -73,7 +73,7 @@ static bool MatchesQuery( const std::vector<base::string16>& query_terms, const DownloadItem& item) { DCHECK(!query_terms.empty()); - base::string16 url_raw(base::UTF8ToUTF16(item.GetOriginalUrl().spec())); + base::string16 url_raw(UTF8ToUTF16(item.GetOriginalUrl().spec())); base::string16 url_formatted = url_raw; if (item.GetBrowserContext()) { Profile* profile = Profile::FromBrowserContext(item.GetBrowserContext()); @@ -139,7 +139,7 @@ static base::string16 GetFilename(const DownloadItem& item) { } static std::string GetFilenameUTF8(const DownloadItem& item) { - return base::UTF16ToUTF8(GetFilename(item)); + return UTF16ToUTF8(GetFilename(item)); } static std::string GetUrl(const DownloadItem& item) { |