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

Commit 92072301 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add metrics categories for delete sims dialogs." into qt-dev

parents 6e55084e aaf8af54
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@
package com.android.settings.network.telephony;

import android.app.Dialog;
import android.app.settings.SettingsEnums;
import android.content.Context;
import android.content.DialogInterface;
import android.os.Bundle;
@@ -77,7 +78,6 @@ public class DeleteSimProfileConfirmationDialog extends InstrumentedDialogFragme

    @Override
    public int getMetricsCategory() {
        // TODO(b/131519375) - use a real id here once it's been created in the metrics proto
        return 0;
        return SettingsEnums.DIALOG_DELETE_SIM_CONFIRMATION;
    }
}
+2 −2
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ import android.app.Activity;
import android.app.Dialog;
import android.app.PendingIntent;
import android.app.ProgressDialog;
import android.app.settings.SettingsEnums;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.DialogInterface;
@@ -114,7 +115,6 @@ public class DeleteSimProfileProgressDialog extends InstrumentedDialogFragment {

    @Override
    public int getMetricsCategory() {
        // TODO(b/131519375) - use a real id here once it's been created in the metrics proto
        return 0;
        return SettingsEnums.DIALOG_DELETE_SIM_PROGRESS;
    }
}