diff options
Diffstat (limited to 'chrome/common/safe_browsing/csd.proto')
-rw-r--r-- | chrome/common/safe_browsing/csd.proto | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/common/safe_browsing/csd.proto b/chrome/common/safe_browsing/csd.proto index 1811c76..a95bad8 100644 --- a/chrome/common/safe_browsing/csd.proto +++ b/chrome/common/safe_browsing/csd.proto @@ -146,3 +146,14 @@ message ClientDownloadRequest { // True if the download was user initiated. optional bool user_initiated = 6; } + +message ClientDownloadResponse { + enum Verdict { + // Download is considered safe. + SAFE = 0; + // Download is considered dangerous. Chrome should show a warning to the + // user. + DANGEROUS = 1; + } + required Verdict verdict = 1; +} |