summaryrefslogtreecommitdiffstats
path: root/chrome/common/safe_browsing
diff options
context:
space:
mode:
authormattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-16 06:11:15 +0000
committermattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-16 06:11:15 +0000
commit15cd4a04f9fe6717560b0e08253eb9800c359c63 (patch)
tree90009175d213f011069a94c2eb32302615df1652 /chrome/common/safe_browsing
parent171516b871a417e46136c2c899007c8bb3921f6e (diff)
downloadchromium_src-15cd4a04f9fe6717560b0e08253eb9800c359c63.zip
chromium_src-15cd4a04f9fe6717560b0e08253eb9800c359c63.tar.gz
chromium_src-15cd4a04f9fe6717560b0e08253eb9800c359c63.tar.bz2
Handle uncommon download verdict for safebrowsing download protection.
BUG=102540 TEST=DownloadProtectionServiceTest.CheckClientDownloadSuccess Review URL: http://codereview.chromium.org/9639003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127116 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/safe_browsing')
-rw-r--r--chrome/common/safe_browsing/csd.proto4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/common/safe_browsing/csd.proto b/chrome/common/safe_browsing/csd.proto
index 5fc9915..88c2399 100644
--- a/chrome/common/safe_browsing/csd.proto
+++ b/chrome/common/safe_browsing/csd.proto
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
@@ -166,6 +166,8 @@ message ClientDownloadResponse {
// Download is considered dangerous. Chrome should show a warning to the
// user.
DANGEROUS = 1;
+ // Download is unknown. Chrome should display a less severe warning.
+ UNCOMMON = 2;
}
required Verdict verdict = 1;
}