summaryrefslogtreecommitdiff
path: root/libs/incident
diff options
context:
space:
mode:
authorYi Jin <jinyithu@google.com>2018-03-13 15:01:00 -0700
committerYi Jin <jinyithu@google.com>2018-03-15 15:02:59 -0700
commit854c8d3d05dd07c37d98793f70c6924443245a38 (patch)
treebafec3246c3b30c103f9e430896fd98e479b1524 /libs/incident
parent6d39e55020cfb09b89396d6d9e38ba8e389ebf09 (diff)
Remove comments of privacy.proto to avoid this accidently go to AOSP
Bug: 72950747 Test: manual Change-Id: I06a897170996fc0aa493bda76495c6ef1e484961
Diffstat (limited to 'libs/incident')
-rw-r--r--libs/incident/proto/android/privacy.proto19
1 files changed, 9 insertions, 10 deletions
diff --git a/libs/incident/proto/android/privacy.proto b/libs/incident/proto/android/privacy.proto
index 7590b22486c5..f29f57f1c197 100644
--- a/libs/incident/proto/android/privacy.proto
+++ b/libs/incident/proto/android/privacy.proto
@@ -23,13 +23,10 @@ import "google/protobuf/descriptor.proto";
package android;
-// TODO: It's better to track this by semantic types and set policy for those.
-// Do this for now to bootstrap the tools.
enum Destination {
// Fields or messages annotated with DEST_LOCAL must never be
// extracted from the device automatically. They can be accessed
- // by tools on the developer's workstation, and if they are sent
- // to another device that must be by the user, with a PII warning. (TBD)
+ // by tools on the developer's workstation or test lab devices.
DEST_LOCAL = 0;
// Fields or messages annotated with DEST_EXPLICIT can be sent
@@ -43,25 +40,27 @@ enum Destination {
DEST_AUTOMATIC = 200;
// This is the default value, which could be overridden by other values.
- // The reason to pick 255 is it fits into one byte.
+ // The reason to pick 255 is it fits into one byte. UNSET fields are treated
+ // as EXPLICIT.
DEST_UNSET = 255;
// Currently use 0, 100, 200 and 255, values in between are reserved for futures.
}
message PrivacyFlags {
- optional Destination dest = 1 [ default = DEST_UNSET ];
+ optional Destination dest = 1 [ default = DEST_UNSET ];
- // regex to filter pii sensitive info from a string field type
- repeated string patterns = 2;
+ // regex to filter pii sensitive info from a string field type.
+ repeated string patterns = 2;
}
extend google.protobuf.FieldOptions {
- // Flags for automatically filtering statistics
+ // Flags used to annotate a field with right privacy level.
optional PrivacyFlags privacy = 102672883;
}
extend google.protobuf.MessageOptions {
- // Flags used to annotate a message which all its unset primitive types inhert this tag.
+ // Flags used to annotate a message which all its unset primitive fields inhert this tag.
optional PrivacyFlags msg_privacy = 102672883;
}
+