@@ -3550,7 +3550,8 @@ public WebBackForwardListClassic copyBackForwardList() {
35503550 * See {@link WebView#setFindListener(WebView.FindListener)}.
35513551 * @hide
35523552 */
3553- public void setFindListener (WebView .FindListener listener ) {
3553+ @ Override
3554+ public void setFindListener (WebView .FindListener listener ) {
35543555 mFindListener = listener ;
35553556 }
35563557
@@ -3573,6 +3574,7 @@ public int findAll(String find) {
35733574 return findAllBody (find , false );
35743575 }
35753576
3577+ @ Override
35763578 public void findAllAsync (String find ) {
35773579 findAllBody (find , true );
35783580 }
@@ -3611,6 +3613,7 @@ private int findAllBody(String find, boolean isAsync) {
36113613 * If false and text is non-null, perform a find all.
36123614 * @return boolean True if the find dialog is shown, false otherwise.
36133615 */
3616+ @ Override
36143617 public boolean showFindDialog (String text , boolean showIme ) {
36153618 FindActionModeCallback callback = new FindActionModeCallback (mContext );
36163619 if (mWebView .getParent () == null || mWebView .startActionMode (callback ) == null ) {
@@ -5234,14 +5237,6 @@ private void resetCaretTimer() {
52345237 }
52355238 }
52365239
5237- /**
5238- * See {@link WebView#emulateShiftHeld()}
5239- */
5240- @ Override
5241- @ Deprecated
5242- public void emulateShiftHeld () {
5243- }
5244-
52455240 /**
52465241 * Select all of the text in this WebView.
52475242 *
@@ -6487,6 +6482,7 @@ public boolean onGenericMotionEvent(MotionEvent event) {
64876482 private DrawData mDelaySetPicture ;
64886483 private DrawData mLoadedPicture ;
64896484
6485+ @ Override
64906486 public void setMapTrackballToArrowKeys (boolean setMap ) {
64916487 mMapTrackballToArrowKeys = setMap ;
64926488 }
@@ -6713,6 +6709,7 @@ boolean updateScrollCoordinates(int x, int y) {
67136709 }
67146710 }
67156711
6712+ @ Override
67166713 public void flingScroll (int vx , int vy ) {
67176714 mScroller .fling (getScrollX (), getScrollY (), vx , vy , 0 , computeMaxScrollX (), 0 ,
67186715 computeMaxScrollY (), mOverflingDistance , mOverflingDistance );
@@ -8450,14 +8447,6 @@ public void setBackgroundColor(int color) {
84508447 mWebViewCore .sendMessage (EventHub .SET_BACKGROUND_COLOR , color );
84518448 }
84528449
8453- /**
8454- * See {@link WebView#debugDump()}
8455- */
8456- @ Override
8457- @ Deprecated
8458- public void debugDump () {
8459- }
8460-
84618450 /**
84628451 * Enable the communication b/t the webView and VideoViewProxy
84638452 *
0 commit comments