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..50156e678170a02b88e471af67885eaa055712e7 100644 |
--- a/chrome/common/safe_browsing/csd.proto |
+++ b/chrome/common/safe_browsing/csd.proto |
@@ -411,6 +411,17 @@ message ClientIncidentReport { |
} |
repeated Dll dll = 9; |
repeated string blacklisted_dll = 10; |
+ message ModuleState { |
+ enum ModifiedState { |
+ UNKNOWN = 0; |
+ MODULE_STATE_UNMODIFIED = 1; |
+ MODULE_STATE_MODIFIED = 2; |
+ } |
+ optional string name = 1; |
+ optional ModifiedState modified_state = 2; |
+ repeated string modified_export = 3; |
+ } |
+ repeated ModuleState module_state = 11; |
} |
optional Process process = 3; |
} |