diff options
author | Steve Block <steveblock@google.com> | 2011-01-06 16:08:13 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2011-01-06 16:33:55 +0000 |
commit | 79b35ce109b9fdca7c7e3af24996c1a2a612f1a4 (patch) | |
tree | 85bbb40d50367633962476705d4aa6d9950f18c5 /WebKit/android/jni/WebCoreJni.cpp | |
parent | 1f7095981158e637a5c6fabde5c1cdaea9bc27a0 (diff) | |
download | external_webkit-79b35ce109b9fdca7c7e3af24996c1a2a612f1a4.zip external_webkit-79b35ce109b9fdca7c7e3af24996c1a2a612f1a4.tar.gz external_webkit-79b35ce109b9fdca7c7e3af24996c1a2a612f1a4.tar.bz2 |
Fix naming of wtfStringToJstring()
Change-Id: I3e1a4fb110fc9d312cc608c86fcaf7cb27431685
Diffstat (limited to 'WebKit/android/jni/WebCoreJni.cpp')
-rw-r--r-- | WebKit/android/jni/WebCoreJni.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/jni/WebCoreJni.cpp b/WebKit/android/jni/WebCoreJni.cpp index 179fb2b..0708644 100644 --- a/WebKit/android/jni/WebCoreJni.cpp +++ b/WebKit/android/jni/WebCoreJni.cpp @@ -71,7 +71,7 @@ WTF::String jstringToWtfString(JNIEnv* env, jstring str) return ret; } -jstring WtfStringToJstring(JNIEnv* env, const WTF::String& str, bool validOnZeroLength) +jstring wtfStringToJstring(JNIEnv* env, const WTF::String& str, bool validOnZeroLength) { int length = str.length(); return length || validOnZeroLength ? env->NewString(str.characters(), length) : 0; |