| Index: chrome/browser/safe_browsing/incident_reporting/state_store_data.proto
|
| diff --git a/chrome/browser/safe_browsing/incident_reporting/state_store_data.proto b/chrome/browser/safe_browsing/incident_reporting/state_store_data.proto
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7625b67b8a1563bdaaf89b2dabd23b0365e74ee5
|
| --- /dev/null
|
| +++ b/chrome/browser/safe_browsing/incident_reporting/state_store_data.proto
|
| @@ -0,0 +1,17 @@
|
| +syntax = "proto2";
|
| +
|
| +option optimize_for = LITE_RUNTIME;
|
| +
|
| +package safe_browsing;
|
| +
|
| +message StateStoreData {
|
| + message Incident {
|
| + optional string key = 1;
|
| + optional uint32 digest = 2;
|
| + }
|
| + message TypedIncidents {
|
| + optional int32 type = 1;
|
| + repeated Incident incident = 2;
|
| + }
|
| + repeated TypedIncidents typed_incidents = 1;
|
| +}
|
|
|