| Index: android_webview/browser/aw_request_interceptor.cc
|
| diff --git a/android_webview/browser/aw_request_interceptor.cc b/android_webview/browser/aw_request_interceptor.cc
|
| index 381a8ab03cdad3657424de878920657fd72bb17a..52673049eb09a8379d284c89076de74ed2a2a982 100644
|
| --- a/android_webview/browser/aw_request_interceptor.cc
|
| +++ b/android_webview/browser/aw_request_interceptor.cc
|
| @@ -55,7 +55,7 @@ AwRequestInterceptor::QueryForAwWebResourceResponse(
|
|
|
| net::URLRequestJob* AwRequestInterceptor::MaybeInterceptRequest(
|
| net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const {
|
| + net::NetworkDelegate* network_delegate) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
|
|
| // See if we've already found out the aw_web_resource_response for this
|
| @@ -81,4 +81,17 @@ net::URLRequestJob* AwRequestInterceptor::MaybeInterceptRequest(
|
| aw_web_resource_response.Pass(), request, network_delegate);
|
| }
|
|
|
| +net::URLRequestJob* AwRequestInterceptor::MaybeInterceptRedirect(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate,
|
| + const GURL& location) {
|
| + return NULL;
|
| +}
|
| +
|
| +net::URLRequestJob* AwRequestInterceptor::MaybeInterceptResponse(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) {
|
| + return NULL;
|
| +}
|
| +
|
| } // namespace android_webview
|
|
|