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

Commit 816ce02d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Long screenshots: toString for CaptureResult" into sc-dev am: c076189d

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13582891

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I023f113ed4f149ee2a040904a0bbccc1004e8d1d
parents eaccec2d c076189d
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -95,6 +95,17 @@ public class ScrollCaptureClient {
            this.requested = request;
            this.captured = captured;
        }

        @Override
        public String toString() {
            return "CaptureResult{"
                    + "requested=" + requested
                    + " (" + requested.width() + "x" + requested.height() + ")"
                    + ", captured=" + captured
                    + " (" + captured.width() + "x" + captured.height() + ")"
                    + ", image=" + image
                    + '}';
        }
    }

    /**