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

Commit a1338be5 authored by Mykola Podolian's avatar Mykola Podolian Committed by Android (Google) Code Review
Browse files

Merge "Removed unused IPC call." into main

parents 2916a864 10f72828
Loading
Loading
Loading
Loading
+0 −16
Original line number Diff line number Diff line
@@ -3179,22 +3179,6 @@ public class BubbleController implements ConfigurationChangeListener,
                    });
        }

        @Override
        public void showDropTarget(boolean show, BubbleBarLocation location) {
            ProtoLog.d(WM_SHELL_BUBBLES_NOISY, "IBubbles.showDropTarget: show=%b loc=%s",
                    show, location);
            executeRemoteCallWithTaskPermission(
                    mController,
                    "showDropTarget",
                    (controller) -> {
                        if (show) {
                            showBubbleBarExpandedViewDropTarget(location);
                        } else {
                            hideBubbleBarExpandedViewDropTarget();
                        }
                    });
        }

        @Override
        public void moveDraggedBubbleToFullscreen(String key, Point dropLocation) {
            ProtoLog.d(WM_SHELL_BUBBLES_NOISY, "IBubbles.moveDraggedBubbleToFullscreen: key=%s "
+2 −4
Original line number Diff line number Diff line
@@ -58,9 +58,7 @@ interface IBubbles {

    oneway void showExpandedView() = 14;

    oneway void showDropTarget(in boolean show, in @nullable BubbleBarLocation location) = 15;
    oneway void moveDraggedBubbleToFullscreen(in String key, in Point dropLocation) = 15;

    oneway void moveDraggedBubbleToFullscreen(in String key, in Point dropLocation) = 16;

    oneway void setHasBubbleBar(in boolean hasBubbleBar) = 17;
    oneway void setHasBubbleBar(in boolean hasBubbleBar) = 16;
}
 No newline at end of file