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

Unified Diff: chrome/browser/ui/panels/panel_bounds_animation.cc

Issue 23531053: ui/base/animation -> ui/gfx/animation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge 2 trunk Created 7 years, 3 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
« no previous file with comments | « chrome/browser/ui/panels/panel_bounds_animation.h ('k') | chrome/browser/ui/tabs/tab_audio_indicator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/panels/panel_bounds_animation.cc
diff --git a/chrome/browser/ui/panels/panel_bounds_animation.cc b/chrome/browser/ui/panels/panel_bounds_animation.cc
index 63739bbaee69820d45d8e96460cf3a4f7b7e6b1a..b596f84170f791e52ffc2a290c8f549cf49582dd 100644
--- a/chrome/browser/ui/panels/panel_bounds_animation.cc
+++ b/chrome/browser/ui/panels/panel_bounds_animation.cc
@@ -16,11 +16,11 @@ const int kSetBoundsAnimationBigMinimizeMs = 1500;
}
-PanelBoundsAnimation::PanelBoundsAnimation(ui::AnimationDelegate* target,
+PanelBoundsAnimation::PanelBoundsAnimation(gfx::AnimationDelegate* target,
Panel* panel,
const gfx::Rect& initial_bounds,
const gfx::Rect& final_bounds)
- : ui::LinearAnimation(kDefaultFramerateHz, target),
+ : gfx::LinearAnimation(kDefaultFramerateHz, target),
panel_(panel),
for_big_minimize_(false),
animation_stop_to_show_titlebar_(0) {
@@ -47,7 +47,7 @@ PanelBoundsAnimation::~PanelBoundsAnimation() {
}
double PanelBoundsAnimation::GetCurrentValue() const {
- return ComputeAnimationValue(ui::LinearAnimation::GetCurrentValue(),
+ return ComputeAnimationValue(gfx::LinearAnimation::GetCurrentValue(),
for_big_minimize_,
animation_stop_to_show_titlebar_);
}
« no previous file with comments | « chrome/browser/ui/panels/panel_bounds_animation.h ('k') | chrome/browser/ui/tabs/tab_audio_indicator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698