diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-18 13:29:15 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-18 13:29:15 +0000 |
commit | 214594aee1595c3f44046c94152fc09fafde0b02 (patch) | |
tree | 35d73ca25cadd00791e59971e074fa0200eea675 /chrome/browser/download/download_started_animation.h | |
parent | 03c379af76cb72a4f59dc4631182104da6bbdd4f (diff) | |
download | chromium_src-214594aee1595c3f44046c94152fc09fafde0b02.zip chromium_src-214594aee1595c3f44046c94152fc09fafde0b02.tar.gz chromium_src-214594aee1595c3f44046c94152fc09fafde0b02.tar.bz2 |
NTP: Adds an app launched animation.
This uses a popup window that is carefully positioned to be placed over the icon on the NTP. The popup fades out after a short delay.
BUG=None
TEST=Start with --enable-apps and launch an app. The icon should *stick* for a very short period and then fade out.
Review URL: http://codereview.chromium.org/2095008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47508 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/download/download_started_animation.h')
-rw-r--r-- | chrome/browser/download/download_started_animation.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/download/download_started_animation.h b/chrome/browser/download/download_started_animation.h index 9ae1f713..f44dece 100644 --- a/chrome/browser/download/download_started_animation.h +++ b/chrome/browser/download/download_started_animation.h @@ -5,6 +5,8 @@ #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_ #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_ +#include "base/basictypes.h" + class TabContents; class DownloadStartedAnimation { @@ -13,6 +15,8 @@ class DownloadStartedAnimation { private: DownloadStartedAnimation() { } + + DISALLOW_COPY_AND_ASSIGN(DownloadStartedAnimation); }; #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_ |