@@ -616,9 +616,6 @@ private native boolean nativeKey(int nativeClass, int keyCode,
616616 int unichar , int repeatCount , boolean isShift , boolean isAlt ,
617617 boolean isSym , boolean isDown );
618618
619- private native void nativeClick (int nativeClass , int framePtr , int nodePtr ,
620- boolean fake );
621-
622619 private native void nativeSendListBoxChoices (int nativeClass ,
623620 boolean [] choices , int size );
624621
@@ -661,8 +658,6 @@ private native String nativeRetrieveAnchorText(int nativeClass,
661658 int x , int y );
662659 private native String nativeRetrieveImageSource (int nativeClass ,
663660 int x , int y );
664- private native void nativeTouchUp (int nativeClass ,
665- int touchGeneration , int framePtr , int nodePtr , int x , int y );
666661 private native boolean nativeMouseClick (int nativeClass );
667662
668663 private native boolean nativeHandleTouchEvent (int nativeClass , int action ,
@@ -1073,10 +1068,8 @@ public class EventHub implements WebViewInputDispatcher.WebKitCallbacks {
10731068 static final int REPLACE_TEXT = 114 ;
10741069 static final int PASS_TO_JS = 115 ;
10751070 static final int SET_GLOBAL_BOUNDS = 116 ;
1076- static final int CLICK = 118 ;
10771071 static final int SET_NETWORK_STATE = 119 ;
10781072 static final int DOC_HAS_IMAGES = 120 ;
1079- static final int FAKE_CLICK = 121 ;
10801073 static final int DELETE_SELECTION = 122 ;
10811074 static final int LISTBOX_CHOICES = 123 ;
10821075 static final int SINGLE_LISTBOX_CHOICE = 124 ;
@@ -1371,14 +1364,6 @@ public void handleMessage(Message msg) {
13711364 keyPress (msg .arg1 );
13721365 break ;
13731366
1374- case FAKE_CLICK :
1375- nativeClick (mNativeClass , msg .arg1 , msg .arg2 , true );
1376- break ;
1377-
1378- case CLICK :
1379- nativeClick (mNativeClass , msg .arg1 , msg .arg2 , false );
1380- break ;
1381-
13821367 case VIEW_SIZE_CHANGED : {
13831368 viewSizeChanged ((WebViewClassic .ViewSizeData ) msg .obj );
13841369 break ;
0 commit comments