summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download/download_request_infobar_delegate.h
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-15 17:09:01 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-15 17:09:01 +0000
commit4129132ccbbc05abb8bfd89b3d7d5316c4d7d136 (patch)
treeb01682d5ad9a9e73c64217299c383f2d281a9864 /chrome/browser/download/download_request_infobar_delegate.h
parent8bad4795cbf8afd699f6c3dc111c8dba11a280d3 (diff)
downloadchromium_src-4129132ccbbc05abb8bfd89b3d7d5316c4d7d136.zip
chromium_src-4129132ccbbc05abb8bfd89b3d7d5316c4d7d136.tar.gz
chromium_src-4129132ccbbc05abb8bfd89b3d7d5316c4d7d136.tar.bz2
Rename DownloadRequestManager to DownloadRequestLimiter.
We already have too many classes named Manager in the download code. This also contains some minor cleanup changes like comment updates. TEST=unit_tests, browser_tests, ui_tests BUG=48913 Review URL: http://codereview.chromium.org/3011001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52493 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/download/download_request_infobar_delegate.h')
-rw-r--r--chrome/browser/download/download_request_infobar_delegate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/download/download_request_infobar_delegate.h b/chrome/browser/download/download_request_infobar_delegate.h
index 112c2e2..700c629 100644
--- a/chrome/browser/download/download_request_infobar_delegate.h
+++ b/chrome/browser/download/download_request_infobar_delegate.h
@@ -6,7 +6,7 @@
#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_INFOBAR_DELEGATE_H_
#include "base/basictypes.h"
-#include "chrome/browser/download/download_request_manager.h"
+#include "chrome/browser/download/download_request_limiter.h"
#include "chrome/browser/tab_contents/infobar_delegate.h"
class TabContents;
@@ -18,11 +18,11 @@ class TabContents;
class DownloadRequestInfoBarDelegate : public ConfirmInfoBarDelegate {
public:
DownloadRequestInfoBarDelegate(
- TabContents* tab, DownloadRequestManager::TabDownloadState* host);
+ TabContents* tab, DownloadRequestLimiter::TabDownloadState* host);
virtual ~DownloadRequestInfoBarDelegate();
- void set_host(DownloadRequestManager::TabDownloadState* host) {
+ void set_host(DownloadRequestLimiter::TabDownloadState* host) {
host_ = host;
}
@@ -42,7 +42,7 @@ class DownloadRequestInfoBarDelegate : public ConfirmInfoBarDelegate {
virtual bool Cancel();
private:
- DownloadRequestManager::TabDownloadState* host_;
+ DownloadRequestLimiter::TabDownloadState* host_;
DISALLOW_COPY_AND_ASSIGN(DownloadRequestInfoBarDelegate);
};