#ifndef UI_VIEWS_EXAMPLES_ANIMATION_EXAMPLE_H_
#define UI_VIEWS_EXAMPLES_ANIMATION_EXAMPLE_H_
#include <memory>
#include "ui/views/animation/animation_abort_handle.h"
#include "ui/views/examples/example_base.h"
namespace views::examples {
class VIEWS_EXAMPLES_EXPORT AnimationExample : public ExampleBase {
public:
AnimationExample();
AnimationExample(const AnimationExample&) = delete;
AnimationExample& operator=(const AnimationExample&) = delete;
~AnimationExample() override;
void CreateExampleView(View* container) override;
private:
std::unique_ptr<AnimationAbortHandle> abort_handle_;
};
}
#endif