Home | History | Annotate | Download | only in compositor

Lines Matching full:bounds

173   // Current bounds are used to calculate offsets when layers are reparented.
174 // Stop (and complete) an ongoing animation to update the bounds immediately.
177 child_animator->StopAnimatingProperty(ui::LayerAnimationElement::BOUNDS);
242 void Layer::SetBounds(const gfx::Rect& bounds) {
243 GetAnimator()->SetBounds(bounds);
253 LayerAnimationElement::BOUNDS)) {
448 translation.Translate(static_cast<float>(p->bounds().x()),
449 static_cast<float>(p->bounds().y()));
767 void Layer::SetBoundsFromAnimation(const gfx::Rect& bounds) {
768 if (bounds == bounds_)
774 bool was_move = bounds_.size() == bounds.size();
775 bounds_ = bounds;
790 SchedulePaint(gfx::Rect(bounds.size()));
832 return bounds();