| 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 894eb7c70886688ed2b30387d5375d6cff56f8b4..7a0cb1487422aabcb8db4245a0b43fe8e953d8b3 100644
|
| --- a/android_webview/native/intercepted_request_data_impl.cc
|
| +++ b/android_webview/native/intercepted_request_data_impl.cc
|
| @@ -35,14 +35,14 @@ class StreamReaderJobDelegateImpl :
|
|
|
| virtual bool GetMimeType(JNIEnv* env,
|
| net::URLRequest* request,
|
| - const android_webview::InputStream& stream,
|
| + android_webview::InputStream& stream,
|
| std::string* mime_type) OVERRIDE {
|
| return intercepted_request_data_impl_->GetMimeType(env, mime_type);
|
| }
|
|
|
| virtual bool GetCharset(JNIEnv* env,
|
| net::URLRequest* request,
|
| - const android_webview::InputStream& stream,
|
| + android_webview::InputStream& stream,
|
| std::string* charset) OVERRIDE {
|
| return intercepted_request_data_impl_->GetCharset(env, charset);
|
| }
|
|
|