summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download/download_item_model.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/download/download_item_model.cc')
-rw-r--r--chrome/browser/download/download_item_model.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/download/download_item_model.cc b/chrome/browser/download/download_item_model.cc
index 2b25d2f..385f07f 100644
--- a/chrome/browser/download/download_item_model.cc
+++ b/chrome/browser/download/download_item_model.cc
@@ -345,7 +345,7 @@ base::string16 DownloadItemModel::GetTooltipText(const gfx::FontList& font_list,
content::DownloadInterruptReason reason = download_->GetLastReason();
if (download_->GetState() == DownloadItem::INTERRUPTED &&
reason != content::DOWNLOAD_INTERRUPT_REASON_USER_CANCELED) {
- tooltip += ASCIIToUTF16("\n");
+ tooltip += base::ASCIIToUTF16("\n");
tooltip += gfx::ElideText(InterruptReasonStatusMessage(reason),
font_list, max_width, gfx::ELIDE_AT_END);
}