Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2072)

Unified Diff: ash/launcher/background_animator.h

Issue 12313118: Refactor: Shelf Widget (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: formatting and moved a couple unit tests Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/launcher/background_animator.h
diff --git a/ash/launcher/background_animator.h b/ash/launcher/background_animator.h
deleted file mode 100644
index cb4bdcd8b43002738dd14ca6075e157077cfce39..0000000000000000000000000000000000000000
--- a/ash/launcher/background_animator.h
+++ /dev/null
@@ -1,72 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_LAUNCHER_BACKGROUND_ANIMATOR_H_
-#define ASH_LAUNCHER_BACKGROUND_ANIMATOR_H_
-
-#include "ash/ash_export.h"
-#include "base/basictypes.h"
-#include "ui/base/animation/animation_delegate.h"
-#include "ui/base/animation/slide_animation.h"
-
-namespace ash {
-namespace internal {
-
-// Delegate is notified any time the background changes.
-class ASH_EXPORT BackgroundAnimatorDelegate {
- public:
- virtual void UpdateBackground(int alpha) = 0;
-
- protected:
- virtual ~BackgroundAnimatorDelegate() {}
-};
-
-// BackgroundAnimator is used by the launcher and system tray to animate the
-// background (alpha).
-class ASH_EXPORT BackgroundAnimator : public ui::AnimationDelegate {
- public:
- // How the background can be changed.
- enum ChangeType {
- CHANGE_ANIMATE,
- CHANGE_IMMEDIATE
- };
-
- BackgroundAnimator(BackgroundAnimatorDelegate* delegate,
- int min_alpha,
- int max_alpha);
- virtual ~BackgroundAnimator();
-
- // Sets whether a background is rendered. Initial value is false. If |type|
- // is |CHANGE_IMMEDIATE| and an animation is not in progress this notifies
- // the delegate immediately (synchronously from this method).
- void SetPaintsBackground(bool value, ChangeType type);
- bool paints_background() const { return paints_background_; }
-
- // Current alpha.
- int alpha() const { return alpha_; }
-
- // ui::AnimationDelegate overrides:
- virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
-
- private:
- BackgroundAnimatorDelegate* delegate_;
-
- const int min_alpha_;
- const int max_alpha_;
-
- ui::SlideAnimation animation_;
-
- // Whether the background is painted.
- bool paints_background_;
-
- // Current alpha value of the background.
- int alpha_;
-
- DISALLOW_COPY_AND_ASSIGN(BackgroundAnimator);
-};
-
-} // namespace internal
-} // namespace ash
-
-#endif // ASH_LAUNCHER_BACKGROUND_ANIMATOR_H_

Powered by Google App Engine
This is Rietveld 408576698