Index: chrome/browser/resources/active_downloads.js |
diff --git a/chrome/browser/resources/active_downloads.js b/chrome/browser/resources/active_downloads.js |
index 5908c3c6b0204253f44214ce0023c5261f45f4e9..590d6396b23c7101022a76592df3425a3239ef7f 100644 |
--- a/chrome/browser/resources/active_downloads.js |
+++ b/chrome/browser/resources/active_downloads.js |
@@ -382,7 +382,7 @@ DownloadRow.prototype = { |
// Handle dangerous files, extensions and dangerous urls. |
var dangerText; |
- if (dangerType == 'DANGEROUS_URL') { |
+ if (dangerType == 'DANGEROUS_URL' || dangerType == 'DANGEROUS_CONTENT') { |
dangerText = localStrings.getString('dangerousurl'); |
benjhayden
2011/11/21 16:21:55
Do we not want a different string for dangerous co
asanka
2011/11/21 17:08:57
I'll defer to Noe' on whether we are going to have
noelutz
2011/11/21 18:17:52
We can use the same warning for now. I like the i
|
} else if (dangerType == 'DANGEROUS_FILE' && this.path.match(/\.crx$/)) { |
dangerText = localStrings.getString('dangerousextension'); |