blob: 1ac93c4d8b710476c927177f86e9e4f62a00ee38 [file] [log] [blame]
[email protected]bd1ad682009-05-15 22:19:171// 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]11f4857282009-11-13 19:56:175#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_
6#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_
[email protected]32b76ef2010-07-26 23:08:247#pragma once
[email protected]bd1ad682009-05-15 22:19:178
[email protected]214594ae2010-05-18 13:29:159#include "base/basictypes.h"
10
[email protected]bd1ad682009-05-15 22:19:1711class TabContents;
12
13class DownloadStartedAnimation {
14 public:
15 static void Show(TabContents* tab_contents);
16
17 private:
18 DownloadStartedAnimation() { }
[email protected]214594ae2010-05-18 13:29:1519
20 DISALLOW_COPY_AND_ASSIGN(DownloadStartedAnimation);
[email protected]bd1ad682009-05-15 22:19:1721};
22
[email protected]11f4857282009-11-13 19:56:1723#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STARTED_ANIMATION_H_