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

Unified Diff: cc/animation/timing_function.h

Issue 2032643003: CC Animation: Erase EaseTimingFunction helpers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gmock
Patch Set: Created 4 years, 7 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/animation/scroll_offset_animations_impl.cc ('k') | cc/animation/timing_function.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/timing_function.h
diff --git a/cc/animation/timing_function.h b/cc/animation/timing_function.h
index 8f021ce735348c7ace44d764a6498a8e21354c8f..85fe92097b5d28585cebc97cd94e887e91a9b000 100644
--- a/cc/animation/timing_function.h
+++ b/cc/animation/timing_function.h
@@ -69,38 +69,6 @@ class CC_EXPORT CubicBezierTimingFunction : public TimingFunction {
DISALLOW_ASSIGN(CubicBezierTimingFunction);
};
-class CC_EXPORT EaseTimingFunction {
- public:
- static std::unique_ptr<TimingFunction> Create();
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(EaseTimingFunction);
-};
-
-class CC_EXPORT EaseInTimingFunction {
- public:
- static std::unique_ptr<TimingFunction> Create();
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(EaseInTimingFunction);
-};
-
-class CC_EXPORT EaseOutTimingFunction {
- public:
- static std::unique_ptr<TimingFunction> Create();
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(EaseOutTimingFunction);
-};
-
-class CC_EXPORT EaseInOutTimingFunction {
- public:
- static std::unique_ptr<TimingFunction> Create();
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(EaseInOutTimingFunction);
-};
-
class CC_EXPORT StepsTimingFunction : public TimingFunction {
public:
// Web Animations specification, 3.12.4. Timing in discrete steps.
« no previous file with comments | « cc/animation/scroll_offset_animations_impl.cc ('k') | cc/animation/timing_function.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698