diff --git a/core/java/android/view/inputmethod/InputConnectionWrapper.java b/core/java/android/view/inputmethod/InputConnectionWrapper.java index 5e323fac2d8cb..8f270f5c5eeb6 100644 --- a/core/java/android/view/inputmethod/InputConnectionWrapper.java +++ b/core/java/android/view/inputmethod/InputConnectionWrapper.java @@ -356,6 +356,16 @@ public class InputConnectionWrapper implements InputConnection { return mTarget.requestCursorUpdates(cursorUpdateMode); } + /** + * {@inheritDoc} + * @throws NullPointerException if the target is {@code null}. + */ + @Override + public boolean requestCursorUpdates(@CursorUpdateMode int cursorUpdateMode, + @CursorUpdateFilter int cursorUpdateFilter) { + return mTarget.requestCursorUpdates(cursorUpdateMode, cursorUpdateFilter); + } + /** * {@inheritDoc} * @throws NullPointerException if the target is {@code null}.