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

Unified Diff: cc/CCTimingFunction.cpp

Issue 11122003: [cc] Rename all cc/ filenames to Chromium style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | « cc/CCTimingFunction.h ('k') | cc/CCVideoLayerImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCTimingFunction.cpp
diff --git a/cc/CCTimingFunction.cpp b/cc/CCTimingFunction.cpp
deleted file mode 100644
index 3a4ecd45a4c304f54073f3d0e07a7bb8fd6f4844..0000000000000000000000000000000000000000
--- a/cc/CCTimingFunction.cpp
+++ /dev/null
@@ -1,74 +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 "CCTimingFunction.h"
-
-namespace {
-const double epsilon = 1e-6;
-} // namespace
-
-namespace cc {
-
-CCTimingFunction::CCTimingFunction()
-{
-}
-
-CCTimingFunction::~CCTimingFunction()
-{
-}
-
-double CCTimingFunction::duration() const
-{
- return 1.0;
-}
-
-scoped_ptr<CCCubicBezierTimingFunction> CCCubicBezierTimingFunction::create(double x1, double y1, double x2, double y2)
-{
- return make_scoped_ptr(new CCCubicBezierTimingFunction(x1, y1, x2, y2));
-}
-
-CCCubicBezierTimingFunction::CCCubicBezierTimingFunction(double x1, double y1, double x2, double y2)
- : m_curve(x1, y1, x2, y2)
-{
-}
-
-CCCubicBezierTimingFunction::~CCCubicBezierTimingFunction()
-{
-}
-
-float CCCubicBezierTimingFunction::getValue(double x) const
-{
- UnitBezier temp(m_curve);
- return static_cast<float>(temp.solve(x, epsilon));
-}
-
-scoped_ptr<CCAnimationCurve> CCCubicBezierTimingFunction::clone() const
-{
- return make_scoped_ptr(new CCCubicBezierTimingFunction(*this)).PassAs<CCAnimationCurve>();
-}
-
-// These numbers come from http://www.w3.org/TR/css3-transitions/#transition-timing-function_tag.
-scoped_ptr<CCTimingFunction> CCEaseTimingFunction::create()
-{
- return CCCubicBezierTimingFunction::create(0.25, 0.1, 0.25, 1).PassAs<CCTimingFunction>();
-}
-
-scoped_ptr<CCTimingFunction> CCEaseInTimingFunction::create()
-{
- return CCCubicBezierTimingFunction::create(0.42, 0, 1.0, 1).PassAs<CCTimingFunction>();
-}
-
-scoped_ptr<CCTimingFunction> CCEaseOutTimingFunction::create()
-{
- return CCCubicBezierTimingFunction::create(0, 0, 0.58, 1).PassAs<CCTimingFunction>();
-}
-
-scoped_ptr<CCTimingFunction> CCEaseInOutTimingFunction::create()
-{
- return CCCubicBezierTimingFunction::create(0.42, 0, 0.58, 1).PassAs<CCTimingFunction>();
-}
-
-} // namespace cc
« no previous file with comments | « cc/CCTimingFunction.h ('k') | cc/CCVideoLayerImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698