summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorCary Clark <cary@android.com>2010-01-07 12:18:23 -0500
committerCary Clark <cary@android.com>2010-01-07 13:02:42 -0500
commitaffa5d2c0f7c2ade43ded5ff9a7952b269183117 (patch)
treea7d1928769a3520a61144e4a21702281d582fd80 /core/java/android
parent3a5033996e9df21abbd5b296d817c2acaedcb0f9 (diff)
remove unused jni interfaces
Also make package interfaces unused outside of WebView.java private. companion change in external/webkit
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/webkit/WebView.java10
1 files changed, 2 insertions, 8 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java
index bf8ab7db50fd..7960322a1761 100644
--- a/core/java/android/webkit/WebView.java
+++ b/core/java/android/webkit/WebView.java
@@ -5744,11 +5744,6 @@ public class WebView extends AbsoluteLayout
hideSoftKeyboard();
} else {
displaySoftKeyboard(false);
- if (DebugFlags.WEB_VIEW) {
- Log.v(LOGTAG, "REQUEST_KEYBOARD"
- + " focusCandidateIsPlugin="
- + nativeFocusCandidateIsPlugin());
- }
}
break;
@@ -6347,7 +6342,7 @@ public class WebView extends AbsoluteLayout
private native void nativeCreate(int ptr);
private native int nativeCursorFramePointer();
private native Rect nativeCursorNodeBounds();
- /* package */ native int nativeCursorNodePointer();
+ private native int nativeCursorNodePointer();
/* package */ native boolean nativeCursorMatchesFocus();
private native boolean nativeCursorIntersects(Rect visibleRect);
private native boolean nativeCursorIsAnchor();
@@ -6379,13 +6374,12 @@ public class WebView extends AbsoluteLayout
private native void nativeFindNext(boolean forward);
/* package */ native int nativeFocusCandidateFramePointer();
private native boolean nativeFocusCandidateIsPassword();
- private native boolean nativeFocusCandidateIsPlugin();
private native boolean nativeFocusCandidateIsRtlText();
private native boolean nativeFocusCandidateIsTextInput();
/* package */ native int nativeFocusCandidateMaxLength();
/* package */ native String nativeFocusCandidateName();
private native Rect nativeFocusCandidateNodeBounds();
- /* package */ native int nativeFocusCandidatePointer();
+ private native int nativeFocusCandidatePointer();
private native String nativeFocusCandidateText();
private native int nativeFocusCandidateTextSize();
/**