diff options
| author | Cary Clark <cary@android.com> | 2009-11-17 16:00:54 -0500 |
|---|---|---|
| committer | Cary Clark <cary@android.com> | 2009-11-17 16:08:13 -0500 |
| commit | d74d4ceff106be90d9eaf08ec191a96bd87a7007 (patch) | |
| tree | 0b0a091ab9369c75ac1e60b28dedc8200f589ae3 /WebKit | |
| parent | 8dcb4bb39afc3d3e0f58ecee412a420fe0290076 (diff) | |
| download | external_webkit-d74d4ceff106be90d9eaf08ec191a96bd87a7007.zip external_webkit-d74d4ceff106be90d9eaf08ec191a96bd87a7007.tar.gz external_webkit-d74d4ceff106be90d9eaf08ec191a96bd87a7007.tar.bz2 | |
rename nativeFindIsDown to nativeFindIsUp
companion fix is in framework/base
fixes bug http://b/issue?id=2264941
Diffstat (limited to 'WebKit')
| -rw-r--r-- | WebKit/android/nav/WebView.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebKit/android/nav/WebView.cpp b/WebKit/android/nav/WebView.cpp index 29df31a..88aa48f 100644 --- a/WebKit/android/nav/WebView.cpp +++ b/WebKit/android/nav/WebView.cpp @@ -1774,7 +1774,7 @@ static void nativeRecordButtons(JNIEnv* env, jobject obj, bool hasFocus, view->nativeRecordButtons(hasFocus, pressed, invalidate); } -static void nativeSetFindIsDown(JNIEnv *env, jobject obj) +static void nativeSetFindIsUp(JNIEnv *env, jobject obj) { WebView* view = GET_NATIVE_VIEW(env, obj); LOG_ASSERT(view, "view not set in %s", __FUNCTION__); @@ -2110,8 +2110,8 @@ static JNINativeMethod gJavaWebViewMethods[] = { (void*) nativeRecordButtons }, { "nativeSelectBestAt", "(Landroid/graphics/Rect;)V", (void*) nativeSelectBestAt }, - { "nativeSetFindIsDown", "()V", - (void*) nativeSetFindIsDown }, + { "nativeSetFindIsUp", "()V", + (void*) nativeSetFindIsUp }, { "nativeSetFollowedLink", "(Z)V", (void*) nativeSetFollowedLink }, { "nativeSetHeightCanMeasure", "(Z)V", |
