Index: chrome/common/safe_browsing/csd.proto |
diff --git a/chrome/common/safe_browsing/csd.proto b/chrome/common/safe_browsing/csd.proto |
index e5c4e277416fd138fca37d2a304da3fc1cf95e4f..3466ed5ec682f8391ab28926a3ba91c54ca6a01d 100644 |
--- a/chrome/common/safe_browsing/csd.proto |
+++ b/chrome/common/safe_browsing/csd.proto |
@@ -382,9 +382,16 @@ message ClientIncidentReport { |
message VariationsSeedSignatureIncident { |
optional string variations_seed_signature = 1; |
} |
- message ScriptRequestIncident { |
- optional bytes script_digest = 1; |
- optional string inclusion_origin = 2; |
+ |
grt (UTC plus 2)
2015/03/30 15:50:44
nit: remove blank line for consistency with all of
|
+ message ResourceRequestIncident { |
+ enum Type { |
+ UNKNOWN = 0; |
+ TYPE_SCRIPT = 1; |
+ TYPE_DOMAIN = 2; |
+ } |
+ optional bytes digest = 1; |
+ optional string origin = 2; |
+ optional Type type = 3; |
} |
optional int64 incident_time_msec = 1; |
optional TrackedPreferenceIncident tracked_preference = 2; |
@@ -392,7 +399,7 @@ message ClientIncidentReport { |
optional BlacklistLoadIncident blacklist_load = 4; |
// Note: skip tag 5 because it was previously used. |
optional VariationsSeedSignatureIncident variations_seed_signature = 6; |
- optional ScriptRequestIncident script_request = 7; |
+ optional ResourceRequestIncident resource_request = 7; |
} |
repeated IncidentData incident = 1; |