Chromium Code Reviews| Index: chrome/browser/profiles/profile_impl_io_data.cc |
| diff --git a/chrome/browser/profiles/profile_impl_io_data.cc b/chrome/browser/profiles/profile_impl_io_data.cc |
| index e0c5b22755cb8da241196c2be52ec3bdfb7f25e2..cb3f838153fdbe695fede346ef37c195bac46e06 100644 |
| --- a/chrome/browser/profiles/profile_impl_io_data.cc |
| +++ b/chrome/browser/profiles/profile_impl_io_data.cc |
| @@ -69,7 +69,7 @@ |
| #include "storage/browser/quota/special_storage_policy.h" |
| #if defined(OS_ANDROID) |
| -#include "chrome/browser/android/offline_pages/offline_page_request_handler.h" |
| +#include "chrome/browser/android/offline_pages/offline_page_request_interceptor.h" |
| #endif // defined(OS_ANDROID) |
| namespace { |
| @@ -532,11 +532,9 @@ void ProfileImplIOData::InitializeInternal( |
| // Install the Offline Page Interceptor. |
| #if defined(OS_ANDROID) |
| - std::unique_ptr<net::URLRequestInterceptor> offline_page_interceptor = |
| - offline_pages::OfflinePageRequestHandler::CreateInterceptor( |
| - profile_params->profile); |
| - if (offline_page_interceptor) |
| - request_interceptors.push_back(std::move(offline_page_interceptor)); |
| + request_interceptors.push_back(std::unique_ptr<net::URLRequestInterceptor>( |
|
mmenke
2016/08/19 15:04:09
Potential Bug: ServiceWorker. We don't want offl
jianli
2016/08/19 19:34:56
I think ServiceWorker's interceptor will kick in b
mmenke
2016/08/19 19:43:01
I think the ResourceType will be the same as the o
|
| + new offline_pages::OfflinePageRequestInterceptor( |
| + profile_params->profile))); |
| #endif |
| // The data reduction proxy interceptor should be as close to the network |