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

Side by Side Diff: ui/views/animation/bounds_animator.cc

Issue 8742030: views: Move view.h to ui/views/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase and fix conflicts Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/animation/bounds_animator.h" 5 #include "ui/views/animation/bounds_animator.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "ui/base/animation/animation_container.h" 8 #include "ui/base/animation/animation_container.h"
9 #include "ui/base/animation/slide_animation.h" 9 #include "ui/base/animation/slide_animation.h"
10 #include "views/view.h" 10 #include "ui/views/view.h"
11 11
12 // Duration in milliseconds for animations. 12 // Duration in milliseconds for animations.
13 static const int kAnimationDuration = 200; 13 static const int kAnimationDuration = 200;
14 14
15 using ui::Animation; 15 using ui::Animation;
16 using ui::AnimationContainer; 16 using ui::AnimationContainer;
17 using ui::SlideAnimation; 17 using ui::SlideAnimation;
18 using ui::Tween; 18 using ui::Tween;
19 19
20 namespace views { 20 namespace views {
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 // Notify here rather than from AnimationXXX to avoid deleting the animation 253 // Notify here rather than from AnimationXXX to avoid deleting the animation
254 // while the animation is calling us. 254 // while the animation is calling us.
255 observer_->OnBoundsAnimatorDone(this); 255 observer_->OnBoundsAnimatorDone(this);
256 } 256 }
257 } 257 }
258 258
259 void BoundsAnimator::AnimationContainerEmpty(AnimationContainer* container) { 259 void BoundsAnimator::AnimationContainerEmpty(AnimationContainer* container) {
260 } 260 }
261 261
262 } // namespace views 262 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/accessibility/native_view_accessibility_win.h ('k') | ui/views/animation/bounds_animator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698