Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3930)

Unified Diff: chrome/common/safe_browsing/csd.proto

Issue 444123002: Adding a new delayed analysis that verify binaries signature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@grt
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/safe_browsing/csd.proto
diff --git a/chrome/common/safe_browsing/csd.proto b/chrome/common/safe_browsing/csd.proto
index 605f234fe56b5ddc9ebb6fe28dca98a60c11519d..005b995f4f80e1c9e67fd36d78a951f088933a3b 100644
--- a/chrome/common/safe_browsing/csd.proto
+++ b/chrome/common/safe_browsing/csd.proto
@@ -351,8 +351,13 @@ message ClientIncidentReport {
repeated string split_key = 3;
optional ValueState value_state = 4;
}
+ message BinaryIntegrityIncident {
+ optional string file = 1;
grt (UTC plus 2) 2014/08/07 02:12:46 if this is only the name of the file rather than t
pmonette_google.com 2014/08/07 21:29:29 In its current form, I am serializing the whole pa
mattm 2014/08/07 22:18:30 If it does include the full path, should it use Pa
grt (UTC plus 2) 2014/08/08 02:23:05 Let's go with the basename for now. If we find tha
pmonette_google.com 2014/08/08 15:05:42 Done.
+ optional ClientDownloadRequest.SignatureInfo signature = 2;
+ }
optional int64 incident_time_msec = 1;
optional TrackedPreferenceIncident tracked_preference = 2;
+ optional BinaryIntegrityIncident binary_integrity = 3;
}
repeated IncidentData incident = 1;

Powered by Google App Engine
This is Rietveld 408576698