Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6221)

Unified Diff: chrome/browser/android/vr_shell/animation.cc

Issue 2966793002: NOT FOR REVIEW - convert to cc animation
Patch Set: switch to transform operations Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/vr_shell/animation.h ('k') | chrome/browser/android/vr_shell/easing.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
deleted file mode 100644
index d193def62d7b835ece321a8e252fd7847e64b977..0000000000000000000000000000000000000000
--- a/chrome/browser/android/vr_shell/animation.cc
+++ /dev/null
@@ -1,30 +0,0 @@
-// 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"
-
-#include <utility>
-
-#include "chrome/browser/android/vr_shell/easing.h"
-
-namespace vr_shell {
-
-Animation::Animation(int id,
- Property property,
- std::unique_ptr<easing::Easing> easing,
- std::vector<float> from,
- std::vector<float> to,
- const base::TimeTicks& start,
- const base::TimeDelta& duration)
- : id(id),
- property(property),
- easing(std::move(easing)),
- from(from),
- to(to),
- start(start),
- duration(duration) {}
-
-Animation::~Animation() {}
-
-} // namespace vr_shell
« no previous file with comments | « chrome/browser/android/vr_shell/animation.h ('k') | chrome/browser/android/vr_shell/easing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698