| Index: android_webview/native/intercepted_request_data_impl.cc
|
| diff --git a/android_webview/native/intercepted_request_data_impl.cc b/android_webview/native/intercepted_request_data_impl.cc
|
| index 675d5234394c5e1f668722771959cad7145b45e9..dc5fe225b2f4e1be2447a176d320ccbb2c76f6fb 100644
|
| --- a/android_webview/native/intercepted_request_data_impl.cc
|
| +++ b/android_webview/native/intercepted_request_data_impl.cc
|
| @@ -29,10 +29,15 @@ class StreamReaderJobDelegateImpl :
|
|
|
| virtual scoped_ptr<InputStream> OpenInputStream(
|
| JNIEnv* env,
|
| - net::URLRequest* request) OVERRIDE {
|
| + const GURL& url) OVERRIDE {
|
| return intercepted_request_data_impl_->GetInputStream(env).Pass();
|
| }
|
|
|
| + virtual void OnInputStreamOpenFailed(net::URLRequest* request,
|
| + bool* restart) OVERRIDE {
|
| + *restart = false;
|
| + }
|
| +
|
| virtual bool GetMimeType(JNIEnv* env,
|
| net::URLRequest* request,
|
| android_webview::InputStream* stream,
|
|
|