diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-13 20:56:03 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-13 20:56:03 +0000 |
commit | d8d73c044dc123703162c64e35261a93b66c9507 (patch) | |
tree | 75ac1a52519470cd8ba5d855406fdd3e872350d6 /chrome/common/safe_browsing | |
parent | b0b22474c64a6990520b68059f4c5c50e7f76202 (diff) | |
download | chromium_src-d8d73c044dc123703162c64e35261a93b66c9507.zip chromium_src-d8d73c044dc123703162c64e35261a93b66c9507.tar.gz chromium_src-d8d73c044dc123703162c64e35261a93b66c9507.tar.bz2 |
Revert 187528 "Reland r185415 (CL 11439004): Add the new protoco..."
> Reland r185415 (CL 11439004): Add the new protocol buffer and malware IP info collection to the client side detection framework.
>
> Includes fix for memory leak in the client_side_detection_host_unittest.cc
>
> BUG=176647
>
> Review URL: https://chromiumcodereview.appspot.com/12393037
BUG=176647,190218
TBR=kewang@google.com
Review URL: https://codereview.chromium.org/12680006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187942 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/safe_browsing')
-rw-r--r-- | chrome/common/safe_browsing/csd.proto | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/chrome/common/safe_browsing/csd.proto b/chrome/common/safe_browsing/csd.proto index 044b9a4..530902c 100644 --- a/chrome/common/safe_browsing/csd.proto +++ b/chrome/common/safe_browsing/csd.proto @@ -87,41 +87,6 @@ message ClientPhishingResponse { repeated string OBSOLETE_whitelist_expression = 2; } -message ClientMalwareRequest { - // URL that the client visited. The CGI parameters are stripped by the - // client. - required string url = 1; - - message Feature { - // Feature name. E.g., 'BadIpFetch='. - required string name = 1; - - // Feature value is always in the range [0.0, 1.0]. Boolean features - // have value 1.0. - required double value = 2; - - // Optional meta information about this feature - repeated string metainfo = 3; - } - - // List of features that were extracted. - repeated Feature feature_map = 2; - - // Field 3 is only used on the server. - - // The referrer URL. This field might not be set, for example, in the case - // where the referrer uses HTTPS. - optional string referrer_url = 4; -} - -message ClientMalwareResponse { - required bool blacklist = 1; - // The confirmed blacklisted bad IP, which will be shown in malware warning. - // This IP string could be either in IPv4 or IPv6 format, which is the same - // as the ones client sent to server. - optional string bad_ip = 2; -} - message ClientDownloadRequest { // The final URL of the download (after all redirects). required string url = 1; |