diff options
author | Steve Block <steveblock@google.com> | 2012-02-16 17:33:50 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-02-22 17:09:24 +0000 |
commit | 4bcd50196a7fe4c0c909ce6a7cfac6a808336611 (patch) | |
tree | d196d6ed654433d3953cbf9476e76f7db8394ef3 /Source/WebKit/android/jni/WebCoreJni.cpp | |
parent | fa20d5d7a15b724e0209ba319750249dcd540402 (diff) | |
download | external_webkit-4bcd50196a7fe4c0c909ce6a7cfac6a808336611.zip external_webkit-4bcd50196a7fe4c0c909ce6a7cfac6a808336611.tar.gz external_webkit-4bcd50196a7fe4c0c909ce6a7cfac6a808336611.tar.bz2 |
Drop support for Android HTTP stack
All future releases will use the Chromium HTTP stack and maintaining two HTTP
stacks adds maintenance overhead. The Chromium HTTP stack requires V8, but we
now use V8 in all build targets (b/5495373), so we can safely drop the Android
HTTP stack.
See corresponding framework change
https://android-git.corp.google.com/g/166325.
Bug: 5495616
Change-Id: I41117b6750fbc1c84cbd4a5951b0d1a457354f93
Diffstat (limited to 'Source/WebKit/android/jni/WebCoreJni.cpp')
-rw-r--r-- | Source/WebKit/android/jni/WebCoreJni.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/WebKit/android/jni/WebCoreJni.cpp b/Source/WebKit/android/jni/WebCoreJni.cpp index 65b6d20..5a142c8 100644 --- a/Source/WebKit/android/jni/WebCoreJni.cpp +++ b/Source/WebKit/android/jni/WebCoreJni.cpp @@ -79,8 +79,6 @@ jstring wtfStringToJstring(JNIEnv* env, const WTF::String& str, bool validOnZero return length || validOnZeroLength ? env->NewString(str.characters(), length) : 0; } - -#if USE(CHROME_NETWORK_STACK) string16 jstringToString16(JNIEnv* env, jstring jstr) { if (!jstr || !env) @@ -114,8 +112,6 @@ jstring stdStringToJstring(JNIEnv* env, const std::string& str, bool validOnZero return !str.empty() || validOnZeroLength ? env->NewStringUTF(str.c_str()) : 0; } -#endif - jobjectArray intRectVectorToRectArray(JNIEnv* env, Vector<WebCore::IntRect>& rects) { jclass rectClass = env->FindClass("android/graphics/Rect"); |