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

Side by Side 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, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 syntax = "proto2";
2
3 option optimize_for = LITE_RUNTIME;
4
5 package safe_browsing;
6
7 message StateStoreData {
8 message Incident {
9 optional string key = 1;
10 optional uint32 digest = 2;
11 }
12 message TypedIncidents {
13 optional int32 type = 1;
14 repeated Incident incident = 2;
15 }
16 repeated TypedIncidents typed_incidents = 1;
17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698