| Index: chrome/browser/android/intercept_download_resource_throttle.h
|
| diff --git a/chrome/browser/android/intercept_download_resource_throttle.h b/chrome/browser/android/intercept_download_resource_throttle.h
|
| index 12123c31be6830543299f97508a011d66e7440f1..c4e891ca660ed6e8f54de9aeccb4f3502be89b40 100644
|
| --- a/chrome/browser/android/intercept_download_resource_throttle.h
|
| +++ b/chrome/browser/android/intercept_download_resource_throttle.h
|
| @@ -24,7 +24,8 @@ class InterceptDownloadResourceThrottle : public content::ResourceThrottle {
|
| InterceptDownloadResourceThrottle(net::URLRequest* request,
|
| int render_process_id,
|
| int render_view_id,
|
| - int request_id);
|
| + int request_id,
|
| + bool must_download);
|
|
|
| // content::ResourceThrottle implementation:
|
| void WillProcessResponse(bool* defer) override;
|
| @@ -39,6 +40,7 @@ class InterceptDownloadResourceThrottle : public content::ResourceThrottle {
|
| int render_process_id_;
|
| int render_view_id_;
|
| int request_id_;
|
| + bool must_download_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(InterceptDownloadResourceThrottle);
|
| };
|
|
|