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

Side by Side Diff: third_party/WebKit/Source/platform/testing/CompositorAnimationsTestUtils.h

Issue 2019613002: Blink Compositor Animation: Make Animation and Curve methods non-virtual. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CompositorAnimationsTestUtils_h
6 #define CompositorAnimationsTestUtils_h
7
8 #include "cc/animation/animation.h"
9 #include "cc/animation/animation_curve.h"
10 #include "cc/animation/keyframed_animation_curve.h"
11 #include "cc/animation/timing_function.h"
12
13 using TimeDeltaForTesting = base::TimeDelta;
jbroman 2016/05/27 14:52:55 This doesn't seem super helpful and makes the Sour
loyso (OOO) 2016/05/31 02:20:39 Done.
14 using CcAnimationForTesting = cc::Animation;
15 using CcTimingFunctionForTesting = cc::TimingFunction;
16 using CcKeyframedFloatAnimationCurveForTesting = cc::KeyframedFloatAnimationCurv e;
17 using CcCubicBezierTimingFunctionForTesting = cc::CubicBezierTimingFunction;
18 using CcFloatKeyframeForTesting = cc::FloatKeyframe;
19 using CcAnimationCurveForTesting = cc::AnimationCurve;
20
21 #endif // CompositorAnimationsTestUtils_h
alancutter (OOO until 2018) 2016/06/01 02:20:55 This is only included once, why have a separate fi
loyso (OOO) 2016/06/01 02:36:47 Irrelevant with a new patch set.
loyso (OOO) 2016/06/01 02:38:20 The actual reason was the folder, where is file is
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698