diff options
| author | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-18 04:36:19 -0800 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-18 04:36:19 -0800 |
| commit | 92c9b35dac946e4bdaa2c36ddadb2c517953f2a7 (patch) | |
| tree | 91c316e9e03ac5c74cf64aebd870a111da0f7798 /WebKit/android/nav | |
| parent | ed6043358cfce2b3a20a5a4aace2ae99b5302200 (diff) | |
| parent | d74d4ceff106be90d9eaf08ec191a96bd87a7007 (diff) | |
| download | external_webkit-92c9b35dac946e4bdaa2c36ddadb2c517953f2a7.zip external_webkit-92c9b35dac946e4bdaa2c36ddadb2c517953f2a7.tar.gz external_webkit-92c9b35dac946e4bdaa2c36ddadb2c517953f2a7.tar.bz2 | |
Merge change I7018b1ca into eclair-mr2
* changes:
rename nativeFindIsDown to nativeFindIsUp
Diffstat (limited to 'WebKit/android/nav')
| -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", |
