chromium/remoting/client/ui/fling_animation.cc

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

#include "remoting/client/ui/fling_animation.h"

#include "base/time/default_tick_clock.h"

namespace remoting {

FlingAnimation::FlingAnimation(float time_constant,
                               const FlingCallback& fling_callback)
    :{}

FlingAnimation::~FlingAnimation() = default;

void FlingAnimation::SetVelocity(float velocity_x, float velocity_y) {}

bool FlingAnimation::IsAnimationInProgress() const {}

void FlingAnimation::Tick() {}

void FlingAnimation::Abort() {}

void FlingAnimation::SetTickClockForTest(const base::TickClock* clock) {}

}  // namespace remoting