- 9f6a55e6 CC Animation: Let AnimationPlayer deals with elements. by loyso · 9 years ago
- fb69174e CC Animation: Let MutatorHostClient deals with elements instead of layers. by loyso · 9 years ago
- 7337a62 CC Animation: Start replacing int layer_id with ElementId element_id. by loyso · 9 years ago
- 550eecbe Use base::TimeDelta::is_zero() where appropriate. by thestig · 9 years ago
- 47a0f19 CC Animation: Merge LayerAnimationController into ElementAnimations. by loyso · 9 years ago
- 79c0bfc CC Animation: Erase LayerAnimationEventObserver. by loyso · 9 years ago
- deaa7fd CC Animation: Make LayerAnimationController to have just one event observer. by loyso · 9 years ago
- de0a002 CC Animation: Make layer_animation_controller a private member of ElementAnimations. by loyso · 9 years ago
- c607f80 CC Animation: Make AnimationRegistrar a private member of AnimationHost. by loyso · 9 years ago
- 25c52c3 Replace scoped_ptr with std::unique_ptr in //ui by danakj · 9 years ago
- 0940d41 CC Animation: Erase cc::LayerSettings everywhere. by loyso · 9 years ago
- e2fed92 UI Compositor: Erase old CC animation system (continued) by loyso · 9 years ago
- 3338dfb UI Compositor: Fix threaded animation survival if layer removed and added. by loyso · 9 years ago
- 5311049 CC Animation: Erase old animation system in UI Compositor. by loyso · 9 years ago
- 33b1edab Remove non-animating LayerAnimators when removing child Layers by bruthig · 9 years ago
- 0ae825e7 ui: Add out-of-line copy ctors for complex classes. by vmpstr · 10 years ago
- ea53437 UI Compositor: Add a DCHECK to prevent cc::AnimationPlayers leak. by loyso · 10 years ago
- d412744 UI Compositor: Fix cc::AnimationPlayers leak. by loyso · 10 years ago
- 1fe980ff UI Compositor: Extract LayerThreadedAnimationDelegate class. by loyso · 10 years ago
- e926437dd CC Animation: Replace AnimiationEventsVector with AnimiationEvents class. by loyso · 10 years ago
- 87b8b58 Switch to standard integer types in ui/compositor/. by avi · 10 years ago
- 84122900 CC Animations: Port UI Browser Compositor to use compositor animation timelines. by loyso · 10 years ago
- 1fbd9f9 CC Animations: Make ui::LayerAnimator a LayerAnimationEventObserver (instead of ui::Layer) by loyso · 10 years ago
- 5a1613dc Move ObserverList to base namespace. by brettw · 10 years ago
- 7215854d Remove gfx::FrameTime for a single clock source by abhishek.ka · 10 years ago
- 4ef352d base: Stop passing a non-const ref to ObserverListBase::Iterator. by danakj · 10 years ago
- 334fb87a Mechanical rename of tracing includes for /ui by ssid · 11 years ago
- 3be83970 Replaces instances of the deprecated TimeTicks::HighResNow() with TimeTicks::Now(). by charliea · 11 years ago
- 2057098 LayerAnimator should withdraw from processing animation queue when its delegate becomes nullptr. by ljagielski · 11 years ago
- 9034a28 compositor: Tick the UI animations from cc, instead of from timer callbacks. by [email protected] · 11 years ago
- e5745ed Revert r274404 and r274409: by [email protected] · 11 years ago
- 3c90fbf compositor: Tick the UI animations from cc, instead of from timer callbacks. by [email protected] · 11 years ago
- ac22516a CC::LayerAnimationController should use TimeTicks and by [email protected] · 11 years ago
- 0d31625 Revert https://codereview.chromium.org/105673008/ because the CL was causing a crash (http://crbug.com/335068) by [email protected] · 12 years ago
- 489fa4f This CL by [email protected] · 12 years ago
- e03193d Use a bitfield to store animatable properties. by [email protected] · 12 years ago
- fbc94488 Changes sequence of docked animations when evicting windows from dock. Windows that are restored into docked area are slid from below rather than from above as before. Additionally minimizing animation for the windows that no longer fit in the dock is slowed down in hopes of making it less confusing. by [email protected] · 12 years ago
- de2cf8c cc: Use HighResNow as timebase if it is fast and reliable by [email protected] · 12 years ago
- ffb15d1 ui/base/animation -> ui/gfx/animation by [email protected] · 12 years ago
- 7ffde47 Update remaining files to use WeakPtr<T>::get() instead of "operator T*" by [email protected] · 12 years ago
- 95e4e1a0 Part 3 of cc/ directory shuffles: animation by [email protected] · 12 years ago
- 712f4b64 Thread ui transform animations by [email protected] · 12 years ago
- dd31fa8 Add duration_scale_mode to ui::LayerAnimator by [email protected] · 12 years ago
- cb67b82 cc: Chromify the Animation and LayerAnimationController classes by [email protected] · 12 years ago
- bf91227 Thread ui opacity animations by [email protected] · 13 years ago
- 6f110e4 Add support for LayerAnimator::AbortAllAnimations by [email protected] · 13 years ago
- 3d75fed Make ui::LayerAnimationSequence and ui::LayerAnimationElement use absolute times by [email protected] · 13 years ago
- 4a386e4 Remove ui::LayerAnimationSequence::duration and ui::LayerAnimationElement::duration. by [email protected] · 13 years ago
- 98e2ed2 compositor: Remove static initializers. by [email protected] · 13 years ago
- df55f23 Let Layer.SetNNN methods respect ENQUEUE_ANIMATION strategy. by [email protected] · 13 years ago
- d764fd3d Fix animation timing in case when there were no animations in queue by [email protected] · 13 years ago
- 7713e24 Avoid using the layer animation machinery for zero length animations by [email protected] · 13 years ago
- d064ef8 Added speed/duration to SessionStateAnimator, fixed call in SystemTrayDelegate by [email protected] · 13 years ago
- a48f30d The layer animator should hang onto weak, rather than raw, pointers to running animations. by [email protected] · 13 years ago
- 0f0453e Migrate ui::Transform to gfx::Transform by [email protected] · 13 years ago
- e81480f1f Adds ability to animate the color of a layer. by [email protected] · 13 years ago
- 5d86a11 Revert 157567 - Revert 156318 - I had originally tried to build upon http://codereview.chromium.org/10869066/, but the number of functions that needed to return (or needed to cope with) DestroyedType's was spiralling out of control and it seemed likely that a mistake would be made and bugs introduced. pkotwicz suggested I make the layer animator ref counted, and this seemed to be a much simpler and safer approach. This way, whenever we're in a LayerAnimator function that may notify observers, we create a scoped_refptr<LayerAnimator> for |this|. If the animator's owning layer gets deleted by an observer, then |this| will be safely destroyed when the function exits and the scoped_refptr falls out of scope. by [email protected] · 13 years ago
- 501bcb0 Revert 156318 - I had originally tried to build upon http://codereview.chromium.org/10869066/, but the number of functions that needed to return (or needed to cope with) DestroyedType's was spiralling out of control and it seemed likely that a mistake would be made and bugs introduced. pkotwicz suggested I make the layer animator ref counted, and this seemed to be a much simpler and safer approach. This way, whenever we're in a LayerAnimator function that may notify observers, we create a scoped_refptr<LayerAnimator> for |this|. If the animator's owning layer gets deleted by an observer, then |this| will be safely destroyed when the function exits and the scoped_refptr falls out of scope. by [email protected] · 13 years ago
- 2b3db70 I had originally tried to build upon http://codereview.chromium.org/10869066/, but the number of functions that needed to return (or needed to cope with) DestroyedType's was spiralling out of control and it seemed likely that a mistake would be made and bugs introduced. pkotwicz suggested I make the layer animator ref counted, and this seemed to be a much simpler and safer approach. This way, whenever we're in a LayerAnimator function that may notify observers, we create a scoped_refptr<LayerAnimator> for |this|. If the animator's owning layer gets deleted by an observer, then |this| will be safely destroyed when the function exits and the scoped_refptr falls out of scope. by [email protected] · 13 years ago
- b785cd36 Attempt 2 at Fixes crash introduced @ 153047 (you can hit crash by maximizing a by [email protected] · 13 years ago
- 1778cbc Makes LayerAnimator use the last tick time from the by [email protected] · 13 years ago
- 2a88c70 Adds LayerAnimator::SchedulePauseForProperties(). by [email protected] · 13 years ago
- f973e8f Revert 153047 - Ensure that LayerAnimator schedules a draw after the last frame of an animation by [email protected] · 13 years ago
- aec12f82 Revert 153291 - Fixes crash introduced @ 153047 (you can hit crash by maximizing a by [email protected] · 13 years ago
- 701d7d6 Fixes crash introduced @ 153047 (you can hit crash by maximizing a by [email protected] · 13 years ago
- 0a5b12b Ensure that LayerAnimator schedules a draw after the last frame of an animation by [email protected] · 13 years ago
- 815d0c38 Add brightness/grayscale animations and use them for OOBE boot transition. by [email protected] · 13 years ago
- a4234d9 LayerAnimator::Step should guard against a null delegate. by [email protected] · 13 years ago
- 77ff438 about:instant allows control of animation speed by [email protected] · 13 years ago
- 300548c Deweirdify. by [email protected] · 13 years ago
- 3489a61 Let the layer animator's slow animation mode affect all animations. by [email protected] · 13 years ago
- 9861f175 ash: Holding down shift slows window animations for debugging by [email protected] · 13 years ago
- 116302fc ui: Move compositor/ directory out of gfx/, up to ui/. by [email protected] · 13 years ago[Renamed (98%) from ui/gfx/compositor/layer_animator.cc]
- d59a369 Be careful not to use a deleted animation. by [email protected] · 13 years ago
- b1c37fc Changes how we detect whether the launcher should be shown when by [email protected] · 13 years ago
- 3c2196b2 Adds a new layer animation element which owns an interpolated transform. This allows more control over the interpolation, and in particular, it allows for a rotation about a pivot. by [email protected] · 13 years ago
- e4cbcc77 Add support for different tween types in ui::Layer animations by [email protected] · 13 years ago
- a67935f Make visibility an animatable layer property. by [email protected] · 14 years ago
- d3ba37ab Fix a memory leak in the layer animator by [email protected] · 14 years ago
- 30676816 Disable animations during aura tests. by [email protected] · 14 years ago
- 74825422 Revert 120092 - Reland 120074 -- Disable animations during aura tests. by [email protected] · 14 years ago
- c15d156 Reland 120074 -- Disable animations during aura tests. by [email protected] · 14 years ago
- 83502cdd Revert 120074 - Disable animations during aura tests. by [email protected] · 14 years ago
- c3287f6 Disable animations during aura tests. by [email protected] · 14 years ago
- 0b3d7b6 Animation observers must opt in to get notified when the animator is destroyed. by [email protected] · 14 years ago
- 6e7c156 Animate the omnibox show/hide. by [email protected] · 14 years ago
- b7a1b66 Make it simpler to detect when implicit animations complete. by [email protected] · 14 years ago
- 2ddfe43 Reenable triggering of screen rotations by sensors. by [email protected] · 14 years ago
- 5cc8538d Removing animation observers from the layer animator should also remove them from the sequences. by [email protected] · 14 years ago
- f5cd9e5 Setting a layer property immediately should cancel any current animations. by [email protected] · 14 years ago
- e876c271 Allows observers to be notified when layer animations complete. by [email protected] · 14 years ago
- fe7074c6 Reland r107720 - Enable the new layer animation framework. by [email protected] · 14 years ago
- 37ae3e6e Revert 107715 - Enable the new layer animation framework. by [email protected] · 14 years ago
- 04f726b Enable the new layer animation framework. by [email protected] · 14 years ago
- b4db937 Explicit animation support by [email protected] · 14 years ago
- 21445e47 Revert 106768 - Explicit animation support by [email protected] · 14 years ago
- 0ed187e Explicit animation support by [email protected] · 14 years ago
- 326828b Animate desktop rotations. by [email protected] · 14 years ago
- 870119a Add a new method to Layer that schedules a redraw in the compositor.Rename Compositor::SchedulePaint to Compositor::ScheduleDraw and CompositorDelegate::ScheduleCompositorPaint to CompositorDelegate::ScheduleDraw.BUG=noneTEST=none by [email protected] · 14 years ago
- 7fca53d4 Adds the ability to set an Animation on Layer so that future changes to the layer result in animating the property. See code in desktop_window_view.cc and window.cc for usage. by [email protected] · 14 years ago