Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6e2b3b3f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Update privacy filter for incident report protos." into rvc-dev am:...

Merge "Update privacy filter for incident report protos." into rvc-dev am: f9a1e1cb am: 19ad54b6 am: b157f1da

Change-Id: Iad8ce5bd562b166efc24fcb9af32fdcc3a30d607
parents 18129d05 b157f1da
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -28,13 +28,3 @@ cc_library_static {
        "android/bluetooth/smp/enums.proto",
    ],
}

java_library_host {
    name: "protolog-proto",
    srcs: [
        "android/server/protolog.proto"
    ],
    proto: {
        type: "full",
    },
}
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ message ApplicationExitInfoProto {
    optional int64 pss = 11;
    optional int64 rss = 12;
    optional int64 timestamp = 13;
    optional string description = 14;
    optional string description = 14 [(.android.privacy).dest = DEST_EXPLICIT];
    optional bytes state = 15;
    optional string trace_file = 16;
}
+3 −1
Original line number Diff line number Diff line
@@ -20,8 +20,10 @@ package android.content;

option java_multiple_files = true;

import "frameworks/base/core/proto/android/privacy.proto";

// On disk representation of android.content.LocusId. Currently used by
// com.android.server.people.ConversationInfoProto.
message LocusIdProto {
  optional string locus_id = 1;
    optional string locus_id = 1 [(.android.privacy).dest = DEST_EXPLICIT];
}
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ option java_multiple_files = true;

// Debugging information for android.nfc.cardemulation.AidGroup
message AidGroupProto {
    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
    option (.android.msg_privacy).dest = DEST_EXPLICIT;

    optional string category = 1;
    // A group of Application Identifiers. A hexadecimal string, with an even amount of hexadecimal
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ option java_multiple_files = true;

// Debugging information for android.nfc.cardemulation.ApduServiceInfo
message ApduServiceInfoProto {
    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
    option (.android.msg_privacy).dest = DEST_EXPLICIT;

    optional .android.content.ComponentNameProto component_name = 1;
    optional string description = 2;
Loading