summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download/download_util.h
diff options
context:
space:
mode:
authorerg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-15 17:23:23 +0000
committererg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-15 17:23:23 +0000
commit5097dc8cf47eb60b3284db2ccf3c1e645c6d8b7b (patch)
tree4df72d2d3125b017df6fd3286d331a5fcd8498a4 /chrome/browser/download/download_util.h
parent7f041050fd817116b78aa09227f511cc6505d7f3 (diff)
downloadchromium_src-5097dc8cf47eb60b3284db2ccf3c1e645c6d8b7b.zip
chromium_src-5097dc8cf47eb60b3284db2ccf3c1e645c6d8b7b.tar.gz
chromium_src-5097dc8cf47eb60b3284db2ccf3c1e645c6d8b7b.tar.bz2
Attempt four at landing the "histogram.h removed from message_loop.h" patch.
Previously committed as r52349 and r52336. Related commits: r52367, r52364 and r52343. Rerunning trybots due to previous trybot breakage. TEST=none BUG=none Review URL: http://codereview.chromium.org/2965015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52496 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/download/download_util.h')
-rw-r--r--chrome/browser/download/download_util.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/chrome/browser/download/download_util.h b/chrome/browser/download/download_util.h
index dee3600..6ee8f89 100644
--- a/chrome/browser/download/download_util.h
+++ b/chrome/browser/download/download_util.h
@@ -11,7 +11,6 @@
#include <string>
#include "base/basictypes.h"
-#include "base/task.h"
#include "gfx/native_widget_types.h"
#if defined(TOOLKIT_VIEWS)
@@ -30,23 +29,6 @@ class SkBitmap;
namespace download_util {
-// DownloadProgressTask --------------------------------------------------------
-
-// A class for managing the timed progress animations for a download view. The
-// view must implement an UpdateDownloadProgress() method.
-template<class DownloadView>
-class DownloadProgressTask : public Task {
- public:
- explicit DownloadProgressTask(DownloadView* view) : view_(view) {}
- virtual ~DownloadProgressTask() {}
- virtual void Run() {
- view_->UpdateDownloadProgress();
- }
- private:
- DownloadView* view_;
- DISALLOW_COPY_AND_ASSIGN(DownloadProgressTask);
-};
-
// Download opening ------------------------------------------------------------
// Whether it is OK to open this download.