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; |
} |