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

Commit 082126b3 authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Merge "Set FIELD_AUTOFILL_NUM_DATASETS to -1 when service return no response." into pi-dev

am: b3029a4f

Change-Id: I042b254b83066a0f114f76ece040e3751a2a01e7
parents 368cc77d b3029a4f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3964,7 +3964,8 @@ message MetricsEvent {
    // Type TYPE_FAILURE: The request failed
    // Package: Package of app that is autofilled
    // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
    // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned (only in success case)
    // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
    // the service returned a null response.
    // NOTE: starting on OS P, it also added:
    // Type TYPE_CLOSE: Service returned a null response.
    // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
+3 −0
Original line number Diff line number Diff line
@@ -596,6 +596,9 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
            }
            if (response == null) {
                processNullResponseLocked(requestFlags);
                mMetricsLogger.write(newLogMaker(MetricsEvent.AUTOFILL_REQUEST, servicePackageName)
                        .setType(MetricsEvent.TYPE_SUCCESS)
                        .addTaggedData(MetricsEvent.FIELD_AUTOFILL_NUM_DATASETS, -1));
                return;
            }