| Index: android_webview/native/android_webview_jni_registrar.cc
|
| diff --git a/android_webview/native/android_webview_jni_registrar.cc b/android_webview/native/android_webview_jni_registrar.cc
|
| index 892605352909860041e57b7bdf70f0d2c5705b07..486329550e25b89814e10cbd09f0caafff0b5f0c 100644
|
| --- a/android_webview/native/android_webview_jni_registrar.cc
|
| +++ b/android_webview/native/android_webview_jni_registrar.cc
|
| @@ -5,13 +5,13 @@
|
| #include "android_webview/native/android_webview_jni_registrar.h"
|
|
|
| #include "android_webview/native/android_protocol_handler.h"
|
| -#include "android_webview/native/android_stream_reader_url_request_job.h"
|
| #include "android_webview/native/aw_contents.h"
|
| #include "android_webview/native/aw_contents_io_thread_client_impl.h"
|
| #include "android_webview/native/aw_http_auth_handler.h"
|
| #include "android_webview/native/aw_resource.h"
|
| #include "android_webview/native/aw_web_contents_delegate.h"
|
| #include "android_webview/native/cookie_manager.h"
|
| +#include "android_webview/native/input_stream_impl.h"
|
| #include "android_webview/native/intercepted_request_data_impl.h"
|
| #include "android_webview/native/js_result_handler.h"
|
| #include "base/android/jni_android.h"
|
| @@ -28,8 +28,6 @@ static base::android::RegistrationMethod kWebViewRegisteredMethods[] = {
|
| content::RegisterWebContentsDelegateAndroidJni },
|
| // Register JNI for android_webview classes.
|
| { "AndroidProtocolHandler", RegisterAndroidProtocolHandler },
|
| - { "AndroidStreamReaderUrlRequestJob",
|
| - RegisterAndroidStreamReaderUrlRequestJob },
|
| { "AwContents", RegisterAwContents },
|
| { "AwContentsIoThreadClientImpl", RegisterAwContentsIoThreadClientImpl},
|
| { "AwHttpAuthHandler", RegisterAwHttpAuthHandler },
|
| @@ -37,6 +35,7 @@ static base::android::RegistrationMethod kWebViewRegisteredMethods[] = {
|
| { "AwWebContentsDelegate", RegisterAwWebContentsDelegate },
|
| { "CookieManager", RegisterCookieManager },
|
| { "InterceptedRequestDataImpl", RegisterInterceptedRequestData },
|
| + { "InputStream", RegisterInputStream },
|
| { "JsResultHandler", RegisterJsResultHandler },
|
| };
|
|
|
|
|