Index: chrome/browser/views/download_started_animation_win.cc |
diff --git a/chrome/browser/views/download_started_animation_win.cc b/chrome/browser/views/download_started_animation_win.cc |
index 8f05c46e8b2dacdaaad6363d8def3950487b497d..eb63f1c3c4cec0d41b8c8c17dc04c3c989f6f993 100644 |
--- a/chrome/browser/views/download_started_animation_win.cc |
+++ b/chrome/browser/views/download_started_animation_win.cc |
@@ -4,7 +4,7 @@ |
#include "chrome/browser/download/download_started_animation.h" |
-#include "app/animation.h" |
+#include "app/linear_animation.h" |
#include "app/resource_bundle.h" |
#include "chrome/browser/tab_contents/tab_contents.h" |
#include "chrome/common/notification_registrar.h" |
@@ -32,7 +32,7 @@ namespace { |
// provided on the constructor, while simultaneously fading it out. To use, |
// simply call "new DownloadStartAnimation"; the class cleans itself up when it |
// finishes animating. |
-class DownloadStartedAnimationWin : public Animation, |
+class DownloadStartedAnimationWin : public LinearAnimation, |
public NotificationObserver, |
public views::ImageView { |
public: |
@@ -74,7 +74,7 @@ class DownloadStartedAnimationWin : public Animation, |
DownloadStartedAnimationWin::DownloadStartedAnimationWin( |
TabContents* tab_contents) |
- : Animation(kMoveTimeMs, kFrameRateHz, NULL), |
+ : LinearAnimation(kMoveTimeMs, kFrameRateHz, NULL), |
popup_(NULL), |
tab_contents_(tab_contents) { |
static SkBitmap* kDownloadImage = NULL; |