diff options
author | Steve Block <steveblock@google.com> | 2010-10-14 12:34:16 +0100 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2010-10-15 10:31:31 +0100 |
commit | 27dd31673790eed64c3e0e508bb900671f06bcb3 (patch) | |
tree | b8c6874caaef70da74c39f9d60503c1077f603dd /WebKit/android/jni/WebCoreJni.cpp | |
parent | 2cc9eb95f73534e3c08c3991cd21bef5e302c88b (diff) | |
download | external_webkit-27dd31673790eed64c3e0e508bb900671f06bcb3.zip external_webkit-27dd31673790eed64c3e0e508bb900671f06bcb3.tar.gz external_webkit-27dd31673790eed64c3e0e508bb900671f06bcb3.tar.bz2 |
Rename to_string() to jstringToWtfString() for greater clarity
Change-Id: I8516c4f39a38e236d0bff38a91fe8657cfcf8ad4
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 dd15971..5bcb2e1 100644 --- a/WebKit/android/jni/WebCoreJni.cpp +++ b/WebKit/android/jni/WebCoreJni.cpp @@ -58,7 +58,7 @@ bool checkException(JNIEnv* env) } // This method is safe to call from the ui thread and the WebCore thread. -WTF::String to_string(JNIEnv* env, jstring str) +WTF::String jstringToWtfString(JNIEnv* env, jstring str) { if (!str || !env) return WTF::String(); |