| Index: chrome/browser/android/intercept_download_resource_throttle.cc
|
| diff --git a/chrome/browser/android/intercept_download_resource_throttle.cc b/chrome/browser/android/intercept_download_resource_throttle.cc
|
| index 30fd0a118f346f7833ec01595fd639fb5622d601..7818fa5ac59fc5829dc36fd7a1a99ad302becdae 100644
|
| --- a/chrome/browser/android/intercept_download_resource_throttle.cc
|
| +++ b/chrome/browser/android/intercept_download_resource_throttle.cc
|
| @@ -7,8 +7,8 @@
|
| #include "base/feature_list.h"
|
| #include "base/metrics/histogram_macros.h"
|
| #include "chrome/browser/android/chrome_feature_list.h"
|
| +#include "chrome/browser/android/download/download_controller_android.h"
|
| #include "components/data_reduction_proxy/core/common/data_reduction_proxy_headers.h"
|
| -#include "content/public/browser/android/download_controller_android.h"
|
| #include "content/public/browser/resource_controller.h"
|
| #include "net/http/http_request_headers.h"
|
| #include "net/http/http_response_headers.h"
|
| @@ -120,7 +120,7 @@ void InterceptDownloadResourceThrottle::ProcessDownloadRequest() {
|
| return;
|
| }
|
|
|
| - content::DownloadControllerAndroid::Get()->CreateGETDownload(
|
| + DownloadControllerAndroid::Get()->CreateGETDownload(
|
| render_process_id_, render_view_id_, request_id_, must_download_);
|
| controller()->Cancel();
|
| RecordInterceptFailureReasons(NO_FAILURE);
|
|
|