chromium/ui/compositor/test/layer_animation_stopped_waiter.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/compositor/test/layer_animation_stopped_waiter.h"

#include "base/run_loop.h"
#include "ui/compositor/layer.h"

namespace ui {

LayerAnimationStoppedWaiter::LayerAnimationStoppedWaiter() = default;

LayerAnimationStoppedWaiter::~LayerAnimationStoppedWaiter() = default;

void LayerAnimationStoppedWaiter::Wait(Layer* layer) {}

void LayerAnimationStoppedWaiter::OnLayerAnimationAborted(
    LayerAnimationSequence* sequence) {}

void LayerAnimationStoppedWaiter::OnLayerAnimationEnded(
    LayerAnimationSequence* sequence) {}

}  // namespace ui