[email protected] | bd1ad68 | 2009-05-15 22:19:17 | [diff] [blame] | 1 | // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 11f485728 | 2009-11-13 19:56:17 | [diff] [blame] | 5 | #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_ |
6 | #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_ | ||||
[email protected] | 32b76ef | 2010-07-26 23:08:24 | [diff] [blame] | 7 | #pragma once |
[email protected] | bd1ad68 | 2009-05-15 22:19:17 | [diff] [blame] | 8 | |
[email protected] | 214594ae | 2010-05-18 13:29:15 | [diff] [blame] | 9 | #include "base/basictypes.h" |
10 | |||||
[email protected] | bd1ad68 | 2009-05-15 22:19:17 | [diff] [blame] | 11 | class TabContents; |
12 | |||||
13 | class DownloadStartedAnimation { | ||||
14 | public: | ||||
15 | static void Show(TabContents* tab_contents); | ||||
16 | |||||
17 | private: | ||||
18 | DownloadStartedAnimation() { } | ||||
[email protected] | 214594ae | 2010-05-18 13:29:15 | [diff] [blame] | 19 | |
20 | DISALLOW_COPY_AND_ASSIGN(DownloadStartedAnimation); | ||||
[email protected] | bd1ad68 | 2009-05-15 22:19:17 | [diff] [blame] | 21 | }; |
22 | |||||
[email protected] | 11f485728 | 2009-11-13 19:56:17 | [diff] [blame] | 23 | #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_ |