blob: f2305f05c1b2ee227f27fa279058ce59dc4f7657 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/gfx/animation/keyframe/transition.h"
namespace gfx {
namespace {
static constexpr int kDefaultTransitionDurationMs = 225;
} // namespace
Transition::Transition()
: duration(base::Milliseconds(kDefaultTransitionDurationMs)) {}
Transition::Transition(const Transition&) = default;
Transition::Transition(Transition&&) = default;
Transition::~Transition() = default;
} // namespace gfx