Index: chrome/common/extensions/api/downloads.idl |
diff --git a/chrome/common/extensions/api/downloads.idl b/chrome/common/extensions/api/downloads.idl |
index d5f87be56a3a4a17f5a685245ec8d6c721a56a27..db7116520a5fc74a55124a2a378bf4446fd3d33f 100644 |
--- a/chrome/common/extensions/api/downloads.idl |
+++ b/chrome/common/extensions/api/downloads.idl |
@@ -47,12 +47,15 @@ namespace downloads { |
// <dt>uncommon</dt> |
// <dd>The download's URL is not commonly downloaded and could be |
// dangerous.</dd> |
+ // <dt>host</dt> |
+ // <dd>The download came from a host known to distribute malicious |
+ // binaries and is likely dangerous.</dd> |
// <dt>safe</dt> |
// <dd>The download presents no known danger to the user's computer.</dd> |
// </dl> |
// These string constants will never change, however the set of DangerTypes |
// may change. |
- enum DangerType {file, url, content, uncommon, safe}; |
+ enum DangerType {file, url, content, uncommon, host, safe}; |
// <dl><dt>in_progress</dt> |
// <dd>The download is currently receiving data from the server.</dd> |