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

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

Issue 440753002: The incident reporting service now calls VerifyModule. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 77c015a47bc67c2525c4ee4b70b5ed8fcd3c476d..89814b1f0f1a43c03a3eddfe5911c0044ca0e31f 100644
--- a/chrome/common/safe_browsing/csd.proto
+++ b/chrome/common/safe_browsing/csd.proto
@@ -411,6 +411,12 @@ message ClientIncidentReport {
}
repeated Dll dll = 9;
repeated string blacklisted_dll = 10;
+ message ModuleState {
+ optional string name = 1;
+ optional uint32 modified_state = 2;
grt (UTC plus 2) 2014/08/05 16:04:54 this is really an enum, right? could you make an e
krstnmnlsn 2014/08/05 23:07:25 I didn't notice we could do enums, that's great.
grt (UTC plus 2) 2014/08/06 01:28:10 It's best not to. When new values are added to the
+ repeated string modified_export = 3;
+ }
+ repeated ModuleState module_state = 11;
}
optional Process process = 3;
}

Powered by Google App Engine
This is Rietveld 408576698