Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6219)

Unified Diff: chrome/browser/ui/webui/active_downloads_ui.cc

Issue 8624008: Make malicious content download warning include the download filename (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/active_downloads_ui.cc
diff --git a/chrome/browser/ui/webui/active_downloads_ui.cc b/chrome/browser/ui/webui/active_downloads_ui.cc
index c24ff9464d8959cf28b32af740a9fae1e99c7e11..65750e649e5f5991f98797983f7330560c5557f4 100644
--- a/chrome/browser/ui/webui/active_downloads_ui.cc
+++ b/chrome/browser/ui/webui/active_downloads_ui.cc
@@ -72,7 +72,9 @@ ChromeWebUIDataSource* CreateActiveDownloadsUIHTMLSource() {
source->AddLocalizedString("dangerousfile", IDS_PROMPT_DANGEROUS_DOWNLOAD);
source->AddLocalizedString("dangerousextension",
IDS_PROMPT_DANGEROUS_DOWNLOAD_EXTENSION);
- source->AddLocalizedString("dangerousurl", IDS_PROMPT_UNSAFE_DOWNLOAD_URL);
+ source->AddLocalizedString("dangerousurl", IDS_PROMPT_MALICIOUS_DOWNLOAD_URL);
+ source->AddLocalizedString("dangerouscontent",
+ IDS_PROMPT_MALICIOUS_DOWNLOAD_CONTENT);
source->AddLocalizedString("cancel", IDS_DOWNLOAD_LINK_CANCEL);
source->AddLocalizedString("discard", IDS_DISCARD_DOWNLOAD);
source->AddLocalizedString("continue", IDS_CONTINUE_EXTENSION_DOWNLOAD);

Powered by Google App Engine
This is Rietveld 408576698