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

Unified Diff: webkit/compositor/WebFloatAnimationCurveImpl.cpp

Issue 10920056: Make cc_unittests and webkit_compositor_unittests executable always (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename to webkit_compositor_bindings Created 8 years, 4 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 | « webkit/compositor/WebFloatAnimationCurveImpl.h ('k') | webkit/compositor/WebFloatAnimationCurveTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor/WebFloatAnimationCurveImpl.cpp
diff --git a/webkit/compositor/WebFloatAnimationCurveImpl.cpp b/webkit/compositor/WebFloatAnimationCurveImpl.cpp
deleted file mode 100644
index cc1ad3506ca694660c790216302efb0974463f3d..0000000000000000000000000000000000000000
--- a/webkit/compositor/WebFloatAnimationCurveImpl.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-// Copyright 2012 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 "config.h"
-
-#include "WebFloatAnimationCurveImpl.h"
-
-#include "CCAnimationCurve.h"
-#include "CCKeyframedAnimationCurve.h"
-#include "CCTimingFunction.h"
-#include "WebAnimationCurveCommon.h"
-#include <wtf/OwnPtr.h>
-#include <wtf/PassOwnPtr.h>
-
-namespace WebKit {
-
-WebFloatAnimationCurve* WebFloatAnimationCurve::create()
-{
- return new WebFloatAnimationCurveImpl();
-}
-
-WebFloatAnimationCurveImpl::WebFloatAnimationCurveImpl()
- : m_curve(WebCore::CCKeyframedFloatAnimationCurve::create())
-{
-}
-
-WebFloatAnimationCurveImpl::~WebFloatAnimationCurveImpl()
-{
-}
-
-WebAnimationCurve::AnimationCurveType WebFloatAnimationCurveImpl::type() const
-{
- return WebAnimationCurve::AnimationCurveTypeFloat;
-}
-
-void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe)
-{
- add(keyframe, TimingFunctionTypeEase);
-}
-
-void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe, TimingFunctionType type)
-{
- m_curve->addKeyframe(WebCore::CCFloatKeyframe::create(keyframe.time, keyframe.value, createTimingFunction(type)));
-}
-
-void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe, double x1, double y1, double x2, double y2)
-{
- m_curve->addKeyframe(WebCore::CCFloatKeyframe::create(keyframe.time, keyframe.value, WebCore::CCCubicBezierTimingFunction::create(x1, y1, x2, y2)));
-}
-
-float WebFloatAnimationCurveImpl::getValue(double time) const
-{
- return m_curve->getValue(time);
-}
-
-PassOwnPtr<WebCore::CCAnimationCurve> WebFloatAnimationCurveImpl::cloneToCCAnimationCurve() const
-{
- return m_curve->clone();
-}
-
-} // namespace WebKit
« no previous file with comments | « webkit/compositor/WebFloatAnimationCurveImpl.h ('k') | webkit/compositor/WebFloatAnimationCurveTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698