Index: chrome/browser/ui/gtk/download/download_item_gtk.cc |
diff --git a/chrome/browser/ui/gtk/download/download_item_gtk.cc b/chrome/browser/ui/gtk/download/download_item_gtk.cc |
index b6f01c0bb9700b297704d60d39a4709b5e6d5b79..54d449831adee274e182b93adcbc43315ea3e97c 100644 |
--- a/chrome/browser/ui/gtk/download/download_item_gtk.cc |
+++ b/chrome/browser/ui/gtk/download/download_item_gtk.cc |
@@ -561,9 +561,10 @@ void DownloadItemGtk::UpdateDangerWarning() { |
// The dangerous download label text is different for different cases. |
if (get_download()->GetDangerType() == DownloadStateInfo::DANGEROUS_URL) { |
+ // TODO(noelutz): handle malicious content warning. |
// Safebrowsing shows the download URL leads to malicious file. |
dangerous_warning = |
- l10n_util::GetStringUTF16(IDS_PROMPT_UNSAFE_DOWNLOAD_URL); |
+ l10n_util::GetStringUTF16(IDS_PROMPT_MALICIOUS_DOWNLOAD_URL); |
} else { |
// It's a dangerous file type (e.g.: an executable). |
DCHECK(get_download()->GetDangerType() == |