diff options
author | bryner@chromium.org <bryner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-17 01:21:10 +0000 |
---|---|---|
committer | bryner@chromium.org <bryner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-17 01:21:10 +0000 |
commit | 574ef39dcca51942c81a8a3351a729f8beafd77e (patch) | |
tree | b17b6be5feff817f0c9ff462a13daf5805a2128e /chrome/common/safe_browsing | |
parent | a87c920b12f4a9443afd9e1e8eead7ef46aab2d3 (diff) | |
download | chromium_src-574ef39dcca51942c81a8a3351a729f8beafd77e.zip chromium_src-574ef39dcca51942c81a8a3351a729f8beafd77e.tar.gz chromium_src-574ef39dcca51942c81a8a3351a729f8beafd77e.tar.bz2 |
Add SafeBrowsing support for checking downloaded zip files that contain executables.
BUG=none
TEST=DownloadProtectionServiceTest.CheckClientDownloadZip
Review URL: https://chromiumcodereview.appspot.com/10382113
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137599 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/safe_browsing')
-rw-r--r-- | chrome/common/safe_browsing/csd.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/common/safe_browsing/csd.proto b/chrome/common/safe_browsing/csd.proto index e8fbc80..853b164 100644 --- a/chrome/common/safe_browsing/csd.proto +++ b/chrome/common/safe_browsing/csd.proto @@ -168,6 +168,8 @@ message ClientDownloadRequest { WIN_EXECUTABLE = 0; // Currently all .exe, .cab and .msi files. CHROME_EXTENSION = 1; // .crx files. ANDROID_APK = 2; // .apk files. + // .zip files containing one of the above executable types. + ZIPPED_EXECUTABLE = 3; } optional DownloadType download_type = 10 [default = WIN_EXECUTABLE]; } |