Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: chrome/browser/download/download_resource_throttle.h

Issue 893843003: Add RedirectInfo as a redirect parameter to ResourceThrottles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Document ResourceThrottle Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_THROTTLE_H_ 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_THROTTLE_H_
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_THROTTLE_H_ 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_THROTTLE_H_
7 7
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "chrome/browser/download/download_request_limiter.h" 9 #include "chrome/browser/download/download_request_limiter.h"
10 #include "content/public/browser/resource_throttle.h" 10 #include "content/public/browser/resource_throttle.h"
(...skipping 12 matching lines...) Expand all
23 public base::SupportsWeakPtr<DownloadResourceThrottle> { 23 public base::SupportsWeakPtr<DownloadResourceThrottle> {
24 public: 24 public:
25 DownloadResourceThrottle(DownloadRequestLimiter* limiter, 25 DownloadResourceThrottle(DownloadRequestLimiter* limiter,
26 int render_process_id, 26 int render_process_id,
27 int render_view_id, 27 int render_view_id,
28 const GURL& url, 28 const GURL& url,
29 const std::string& request_method); 29 const std::string& request_method);
30 30
31 // content::ResourceThrottle implementation: 31 // content::ResourceThrottle implementation:
32 void WillStartRequest(bool* defer) override; 32 void WillStartRequest(bool* defer) override;
33 void WillRedirectRequest(const GURL& new_url, bool* defer) override; 33 void WillRedirectRequest(const net::RedirectInfo& redirect_info,
34 bool* defer) override;
34 void WillProcessResponse(bool* defer) override; 35 void WillProcessResponse(bool* defer) override;
35 const char* GetNameForLogging() const override; 36 const char* GetNameForLogging() const override;
36 37
37 private: 38 private:
38 ~DownloadResourceThrottle() override; 39 ~DownloadResourceThrottle() override;
39 40
40 void WillDownload(bool* defer); 41 void WillDownload(bool* defer);
41 void ContinueDownload(bool allow); 42 void ContinueDownload(bool allow);
42 43
43 // Set to true when we are querying the DownloadRequestLimiter. 44 // Set to true when we are querying the DownloadRequestLimiter.
44 bool querying_limiter_; 45 bool querying_limiter_;
45 46
46 // Set to true when we know that the request is allowed to start. 47 // Set to true when we know that the request is allowed to start.
47 bool request_allowed_; 48 bool request_allowed_;
48 49
49 // Set to true when we have deferred the request. 50 // Set to true when we have deferred the request.
50 bool request_deferred_; 51 bool request_deferred_;
51 52
52 DISALLOW_COPY_AND_ASSIGN(DownloadResourceThrottle); 53 DISALLOW_COPY_AND_ASSIGN(DownloadResourceThrottle);
53 }; 54 };
54 55
55 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_THROTTLE_H_ 56 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_THROTTLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698