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

Unified Diff: chrome/browser/safe_browsing/incident_reporting/state_store_data.proto

Issue 1243293003: Platform-specific prune state storage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prune1
Patch Set: compile fix Created 5 years, 5 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/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;
+}

Powered by Google App Engine
This is Rietveld 408576698