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

Unified Diff: content/browser/renderer_host/resource_dispatcher_host.h

Issue 7660007: Factor out dependncy on download throttling from core download code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/resource_dispatcher_host.h
===================================================================
--- content/browser/renderer_host/resource_dispatcher_host.h (revision 96872)
+++ content/browser/renderer_host/resource_dispatcher_host.h (working copy)
@@ -31,7 +31,6 @@
class CrossSiteResourceHandler;
class DownloadFileManager;
-class DownloadRequestLimiter;
class LoginHandler;
class NotificationDetails;
class PluginService;
@@ -147,10 +146,6 @@
return download_file_manager_;
}
- DownloadRequestLimiter* download_request_limiter() const {
- return download_request_limiter_.get();
- }
-
SaveFileManager* save_file_manager() const {
return save_file_manager_;
}
@@ -463,9 +458,6 @@
// We own the download file writing thread and manager
scoped_refptr<DownloadFileManager> download_file_manager_;
- // Determines whether a download is allowed.
- scoped_refptr<DownloadRequestLimiter> download_request_limiter_;
-
// We own the save file manager.
scoped_refptr<SaveFileManager> save_file_manager_;

Powered by Google App Engine
This is Rietveld 408576698