diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-01 03:53:41 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-01 03:53:41 +0000 |
commit | 535a5cfc99aa98b005ae6357123024c5d73feda8 (patch) | |
tree | d1aafd00c691707f792118714b41f6e20d795997 /chrome/common/safe_browsing | |
parent | ee77317ebfab7efd2c8d216ab92d7497b951242f (diff) | |
download | chromium_src-535a5cfc99aa98b005ae6357123024c5d73feda8.zip chromium_src-535a5cfc99aa98b005ae6357123024c5d73feda8.tar.gz chromium_src-535a5cfc99aa98b005ae6357123024c5d73feda8.tar.bz2 |
Sync csd.proto with server-side version.
Adds DANGEROUS_HOST ClientDownloadResponse verdict and pipes it through the downloads system. For now we show the same warning message for both DANGEROUS_CONTENT and DANGEROUS_HOST.
BUG=none
Review URL: https://chromiumcodereview.appspot.com/12087095
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180064 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 e139b32..e34e35a 100644 --- a/chrome/common/safe_browsing/csd.proto +++ b/chrome/common/safe_browsing/csd.proto @@ -195,6 +195,8 @@ message ClientDownloadResponse { UNCOMMON = 2; // The download is potentially unwanted. POTENTIALLY_UNWANTED = 3; + // The download is from a dangerous host. + DANGEROUS_HOST = 4; } required Verdict verdict = 1; |