blob: b31a25d5693c5c8ca3f64d2ddba8b99b6616c957 [file] [log] [blame]
[email protected]214594ae2010-05-18 13:29:151// Copyright (c) 2010 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
5#ifndef CHROME_BROWSER_APP_LAUNCHED_ANIMATION_H_
6#define CHROME_BROWSER_APP_LAUNCHED_ANIMATION_H_
7
8#include "base/basictypes.h"
9
10class Extension;
11
12namespace gfx {
13 class Rect;
14}
15
16class AppLaunchedAnimation {
17 public:
18 // Starts an animation of the |extension| being launched. The |rect| is the
19 // rect of the app icon.
20 static void Show(Extension* extension, const gfx::Rect& rect);
21
22 private:
23 AppLaunchedAnimation() { }
24
25 DISALLOW_COPY_AND_ASSIGN(AppLaunchedAnimation);
26};
27
28#endif // CHROME_BROWSER_APP_LAUNCHED_ANIMATION_H_