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

Commit e4ded007 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4693202 from 28b43595 to qt-release

Change-Id: I3c0ad5d9acd26113ec968c03d15236659b613045
parents 619bac34 28b43595
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -39,6 +39,9 @@ public interface Bubble {
  /** Returns whether the bubble is currently visible */
  boolean isVisible();

  /** Returns whether the bubble is currently dismissed */
  boolean isDismissed();

  /**
   * Set the info for this Bubble to display
   *
+5 −0
Original line number Diff line number Diff line
@@ -39,6 +39,11 @@ public class BubbleStub implements Bubble {
    return false;
  }

  @Override
  public boolean isDismissed() {
    return false;
  }

  @Override
  public void setBubbleInfo(@NonNull BubbleInfo bubbleInfo) {}

+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ import com.android.dialer.voicemailstatus.VisualVoicemailEnabledChecker;
 * Fragment for confirming and enacting blocking/unblocking a number. Also invokes snackbar
 * providing undo functionality.
 */
@Deprecated
public class BlockNumberDialogFragment extends DialogFragment {

  private static final String BLOCK_DIALOG_FRAGMENT = "BlockNumberDialog";
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ import com.android.dialer.common.concurrent.DialerExecutorFactory;
 * android.provider.BlockedNumberContract} blocking. In order for this to happen, the user cannot
 * have any numbers that are blocked in the Dialer solution.
 */
@Deprecated
public class BlockedNumbersAutoMigrator {

  static final String HAS_CHECKED_AUTO_MIGRATE_KEY = "checkedAutoMigrate";
+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ import java.util.Objects;
 * {@link android.provider.BlockedNumberContract} blocking.
 */
@TargetApi(VERSION_CODES.N)
@Deprecated
public class BlockedNumbersMigrator {

  private final Context context;
Loading