Chromium Code Reviews| Index: chrome/browser/safe_browsing/safe_browsing_util.h |
| diff --git a/chrome/browser/safe_browsing/safe_browsing_util.h b/chrome/browser/safe_browsing/safe_browsing_util.h |
| index 2911f469133e5e2fc442e65671ddcb5a1dd9121b..4e7de26e4f4c26964a607361100a7b3950a529d3 100644 |
| --- a/chrome/browser/safe_browsing/safe_browsing_util.h |
| +++ b/chrome/browser/safe_browsing/safe_browsing_util.h |
| @@ -266,6 +266,8 @@ extern const char kBinUrlList[]; |
| extern const char kBinHashList[]; |
| // SafeBrowsing client-side detection whitelist list name. |
| extern const char kCsdWhiteList[]; |
| +// SafeBrowsing download whitelist list name. |
| +extern const char kDownloadWhiteList[]; |
| enum ListType { |
| INVALID = -1, |
| @@ -274,6 +276,7 @@ enum ListType { |
| BINURL = 2, |
| BINHASH = 3, |
| CSDWHITELIST = 4, |
| + DOWNLOADWHITELIST = 6, |
|
mattm
2011/09/10 01:12:48
What happened to 5?
noelutz
2011/09/10 01:24:20
SafeBrowsing lists are stored in pairs. The list
|
| }; |
| // Maps a list name to ListType. |