From d6884198e676a3aeed2160794db256729fe7d0cd Mon Sep 17 00:00:00 2001 From: John Reck Date: Wed, 30 Nov 2022 14:08:58 -0500 Subject: [PATCH] Fix request -> Builder Test: none Bug: 245479361 Change-Id: Iee3bf90099648370018f31c6711ffdb56a98d89c --- graphics/java/android/view/PixelCopy.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/graphics/java/android/view/PixelCopy.java b/graphics/java/android/view/PixelCopy.java index 82ced438f0a56..0e198d5c56ec4 100644 --- a/graphics/java/android/view/PixelCopy.java +++ b/graphics/java/android/view/PixelCopy.java @@ -382,9 +382,9 @@ public final class PixelCopy { } /** - * Creates a PixelCopy request for the given {@link Window} + * Creates a PixelCopy Builder for the given {@link Window} * @param source The Window to copy from - * @return A {@link Builder} builder to set the optional params & execute the request + * @return A {@link Builder} builder to set the optional params & build the request */ @SuppressLint("BuilderSetStyle") public static @NonNull Builder ofWindow(@NonNull Window source) { @@ -394,7 +394,7 @@ public final class PixelCopy { } /** - * Creates a PixelCopy request for the {@link Window} that the given {@link View} is + * Creates a PixelCopy Builder for the {@link Window} that the given {@link View} is * attached to. * * Note that this copy request is not cropped to the area the View occupies by default. @@ -404,7 +404,7 @@ public final class PixelCopy { * * @param source A View that {@link View#isAttachedToWindow() is attached} to a window * that will be used to retrieve the window to copy from. - * @return A {@link Builder} builder to set the optional params & execute the request + * @return A {@link Builder} builder to set the optional params & build the request */ @SuppressLint("BuilderSetStyle") public static @NonNull Builder ofWindow(@NonNull View source) { @@ -427,10 +427,10 @@ public final class PixelCopy { } /** - * Creates a PixelCopy request for the given {@link Surface} + * Creates a PixelCopy Builder for the given {@link Surface} * * @param source The Surface to copy from. Must be {@link Surface#isValid() valid}. - * @return A {@link Builder} builder to set the optional params & execute the request + * @return A {@link Builder} builder to set the optional params & build the request */ @SuppressLint("BuilderSetStyle") public static @NonNull Builder ofSurface(@NonNull Surface source) { @@ -441,12 +441,12 @@ public final class PixelCopy { } /** - * Creates a PixelCopy request for the {@link Surface} belonging to the + * Creates a PixelCopy Builder for the {@link Surface} belonging to the * given {@link SurfaceView} * * @param source The SurfaceView to copy from. The backing surface must be * {@link Surface#isValid() valid} - * @return A {@link Builder} builder to set the optional params & execute the request + * @return A {@link Builder} builder to set the optional params & build the request */ @SuppressLint("BuilderSetStyle") public static @NonNull Builder ofSurface(@NonNull SurfaceView source) {