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

Unified Diff: ui/views/controls/slider.h

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 | « ui/views/controls/scrollbar/overlay_scroll_bar.cc ('k') | ui/views/controls/slider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/slider.h
diff --git a/ui/views/controls/slider.h b/ui/views/controls/slider.h
index 5cfd3f5aaec94b3b77410cda0efcc36c47c668d0..3c17e94af251aeb863b997e71247736e4b509424 100644
--- a/ui/views/controls/slider.h
+++ b/ui/views/controls/slider.h
@@ -5,7 +5,7 @@
#ifndef UI_VIEWS_CONTROLS_SLIDER_H_
#define UI_VIEWS_CONTROLS_SLIDER_H_
-#include "ui/base/animation/animation_delegate.h"
+#include "ui/gfx/animation/animation_delegate.h"
#include "ui/views/view.h"
#include "ui/views/views_export.h"
@@ -13,9 +13,6 @@ typedef unsigned int SkColor;
namespace gfx {
class ImageSkia;
-}
-
-namespace ui {
class SlideAnimation;
}
@@ -45,7 +42,7 @@ class VIEWS_EXPORT SliderListener {
};
class VIEWS_EXPORT Slider : public View,
- public ui::AnimationDelegate {
+ public gfx::AnimationDelegate {
public:
enum Orientation {
HORIZONTAL,
@@ -96,13 +93,13 @@ class VIEWS_EXPORT Slider : public View,
// ui::EventHandler overrides:
virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
- // ui::AnimationDelegate overrides:
- virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
+ // gfx::AnimationDelegate overrides:
+ virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE;
SliderListener* listener_;
Orientation orientation_;
- scoped_ptr<ui::SlideAnimation> move_animation_;
+ scoped_ptr<gfx::SlideAnimation> move_animation_;
float value_;
float keyboard_increment_;
« no previous file with comments | « ui/views/controls/scrollbar/overlay_scroll_bar.cc ('k') | ui/views/controls/slider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698