@@ -3549,7 +3549,8 @@ public WebBackForwardListClassic copyBackForwardList() {
35493549 * See {@link WebView#setFindListener(WebView.FindListener)}.
35503550 * @hide
35513551 */
3552- public void setFindListener (WebView .FindListener listener ) {
3552+ @ Override
3553+ public void setFindListener (WebView .FindListener listener ) {
35533554 mFindListener = listener ;
35543555 }
35553556
@@ -3572,6 +3573,7 @@ public int findAll(String find) {
35723573 return findAllBody (find , false );
35733574 }
35743575
3576+ @ Override
35753577 public void findAllAsync (String find ) {
35763578 findAllBody (find , true );
35773579 }
@@ -3610,6 +3612,7 @@ private int findAllBody(String find, boolean isAsync) {
36103612 * If false and text is non-null, perform a find all.
36113613 * @return boolean True if the find dialog is shown, false otherwise.
36123614 */
3615+ @ Override
36133616 public boolean showFindDialog (String text , boolean showIme ) {
36143617 FindActionModeCallback callback = new FindActionModeCallback (mContext );
36153618 if (mWebView .getParent () == null || mWebView .startActionMode (callback ) == null ) {
@@ -5233,14 +5236,6 @@ private void resetCaretTimer() {
52335236 }
52345237 }
52355238
5236- /**
5237- * See {@link WebView#emulateShiftHeld()}
5238- */
5239- @ Override
5240- @ Deprecated
5241- public void emulateShiftHeld () {
5242- }
5243-
52445239 /**
52455240 * Select all of the text in this WebView.
52465241 *
@@ -6486,6 +6481,7 @@ public boolean onGenericMotionEvent(MotionEvent event) {
64866481 private DrawData mDelaySetPicture ;
64876482 private DrawData mLoadedPicture ;
64886483
6484+ @ Override
64896485 public void setMapTrackballToArrowKeys (boolean setMap ) {
64906486 mMapTrackballToArrowKeys = setMap ;
64916487 }
@@ -6712,6 +6708,7 @@ boolean updateScrollCoordinates(int x, int y) {
67126708 }
67136709 }
67146710
6711+ @ Override
67156712 public void flingScroll (int vx , int vy ) {
67166713 mScroller .fling (getScrollX (), getScrollY (), vx , vy , 0 , computeMaxScrollX (), 0 ,
67176714 computeMaxScrollY (), mOverflingDistance , mOverflingDistance );
@@ -8447,14 +8444,6 @@ public void setBackgroundColor(int color) {
84478444 mWebViewCore .sendMessage (EventHub .SET_BACKGROUND_COLOR , color );
84488445 }
84498446
8450- /**
8451- * See {@link WebView#debugDump()}
8452- */
8453- @ Override
8454- @ Deprecated
8455- public void debugDump () {
8456- }
8457-
84588447 /**
84598448 * Enable the communication b/t the webView and VideoViewProxy
84608449 *
0 commit comments