// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/views/frame/browser_frame_bounds_change_animation.h" #include "ui/gfx/animation/tween.h" #include "ui/views/widget/widget.h" namespace { constexpr base::TimeDelta kDuration = …; } // namespace BrowserFrameBoundsChangeAnimation::BrowserFrameBoundsChangeAnimation( views::Widget& frame, const gfx::Rect& new_bounds) : … { … } BrowserFrameBoundsChangeAnimation::~BrowserFrameBoundsChangeAnimation() = default; void BrowserFrameBoundsChangeAnimation::AnimateToState(double state) { … }