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

Commit 3b10e450 authored by Julia Reynolds's avatar Julia Reynolds
Browse files

Rename class

Test: atest
Bug: 137397399
Change-Id: Idae73251bb67fbef2cf29f730f1420e98e38a8f3
parent abe59ac8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -34,10 +34,10 @@ public class AllowSoundPreferenceController extends NotificationPreferenceContro

    private static final String TAG = "AllowSoundPrefContr";
    private static final String KEY_IMPORTANCE = "allow_sound";
    private NotificationSettingsBase.ImportanceListener mImportanceListener;
    private NotificationSettings.ImportanceListener mImportanceListener;

    public AllowSoundPreferenceController(Context context,
            NotificationSettingsBase.ImportanceListener importanceListener,
            NotificationSettings.ImportanceListener importanceListener,
            NotificationBackend backend) {
        super(context, backend);
        mImportanceListener = importanceListener;
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ import java.util.ArrayList;
import java.util.List;

@SearchIndexable
public class AppBubbleNotificationSettings extends NotificationSettingsBase implements
public class AppBubbleNotificationSettings extends NotificationSettings implements
        GlobalBubblePermissionObserverMixin.Listener {
    private static final String TAG = "AppBubNotiSettings";
    private GlobalBubblePermissionObserverMixin mObserverMixin;
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ import androidx.preference.PreferenceGroup;
import androidx.preference.PreferenceScreen;

/** These settings are per app, so should not be returned in global search results. */
public class AppNotificationSettings extends NotificationSettingsBase {
public class AppNotificationSettings extends NotificationSettings {
    private static final String TAG = "AppNotificationSettings";
    private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);

+2 −2
Original line number Diff line number Diff line
@@ -35,10 +35,10 @@ public class BlockPreferenceController extends NotificationPreferenceController
        implements PreferenceControllerMixin, SwitchBar.OnSwitchChangeListener {

    private static final String KEY_BLOCK = "block";
    private NotificationSettingsBase.ImportanceListener mImportanceListener;
    private NotificationSettings.ImportanceListener mImportanceListener;

    public BlockPreferenceController(Context context,
            NotificationSettingsBase.ImportanceListener importanceListener,
            NotificationSettings.ImportanceListener importanceListener,
            NotificationBackend backend) {
        super(context, backend);
        mImportanceListener = importanceListener;
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ import com.android.settingslib.core.AbstractPreferenceController;
import java.util.ArrayList;
import java.util.List;

public class ChannelNotificationSettings extends NotificationSettingsBase {
public class ChannelNotificationSettings extends NotificationSettings {
    private static final String TAG = "ChannelSettings";

    @Override
Loading