| Index: chrome/browser/android/vr_shell/animation.cc
|
| diff --git a/chrome/browser/android/vr_shell/animation.cc b/chrome/browser/android/vr_shell/animation.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..819bb6976e85cf60f48393389b78f8dba8b2d3e7
|
| --- /dev/null
|
| +++ b/chrome/browser/android/vr_shell/animation.cc
|
| @@ -0,0 +1,26 @@
|
| +// Copyright 2016 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 "chrome/browser/android/vr_shell/animation.h"
|
| +
|
| +namespace vr_shell {
|
| +
|
| +Animation::Animation(int id,
|
| + Property property,
|
| + std::unique_ptr<easing::Easing> easing,
|
| + std::vector<float> from,
|
| + std::vector<float> to,
|
| + int64_t start,
|
| + int64_t duration)
|
| + : id(id),
|
| + property(property),
|
| + easing(std::move(easing)),
|
| + from(from),
|
| + to(to),
|
| + start(start),
|
| + duration(duration) {}
|
| +
|
| +Animation::~Animation() {}
|
| +
|
| +} // namespace vr_shell
|
|
|