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

Side by Side Diff: cc/blink/web_filter_animation_curve_impl.h

Issue 809523004: Define step timing function for the cc animation framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused enum Created 6 years 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
« no previous file with comments | « cc/animation/timing_function.cc ('k') | cc/blink/web_filter_animation_curve_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ 5 #ifndef CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_
6 #define CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ 6 #define CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "cc/blink/cc_blink_export.h" 9 #include "cc/blink/cc_blink_export.h"
10 #include "third_party/WebKit/public/platform/WebFilterAnimationCurve.h" 10 #include "third_party/WebKit/public/platform/WebFilterAnimationCurve.h"
(...skipping 18 matching lines...) Expand all
29 virtual AnimationCurveType type() const; 29 virtual AnimationCurveType type() const;
30 30
31 // blink::WebFilterAnimationCurve implementation. 31 // blink::WebFilterAnimationCurve implementation.
32 virtual void add(const blink::WebFilterKeyframe& keyframe, 32 virtual void add(const blink::WebFilterKeyframe& keyframe,
33 TimingFunctionType type); 33 TimingFunctionType type);
34 virtual void add(const blink::WebFilterKeyframe& keyframe, 34 virtual void add(const blink::WebFilterKeyframe& keyframe,
35 double x1, 35 double x1,
36 double y1, 36 double y1,
37 double x2, 37 double x2,
38 double y2); 38 double y2);
39 virtual void add(const blink::WebFilterKeyframe& keyframe,
40 int steps,
41 float steps_start_offset);
42
39 virtual void setTimingFunction(TimingFunctionType type); 43 virtual void setTimingFunction(TimingFunctionType type);
40 virtual void setTimingFunction(double x1, double y1, double x2, double y2); 44 virtual void setTimingFunction(double x1, double y1, double x2, double y2);
41 45
42 scoped_ptr<cc::AnimationCurve> CloneToAnimationCurve() const; 46 scoped_ptr<cc::AnimationCurve> CloneToAnimationCurve() const;
43 47
44 private: 48 private:
45 scoped_ptr<cc::KeyframedFilterAnimationCurve> curve_; 49 scoped_ptr<cc::KeyframedFilterAnimationCurve> curve_;
46 50
47 DISALLOW_COPY_AND_ASSIGN(WebFilterAnimationCurveImpl); 51 DISALLOW_COPY_AND_ASSIGN(WebFilterAnimationCurveImpl);
48 }; 52 };
49 53
50 } // namespace cc_blink 54 } // namespace cc_blink
51 55
52 #endif // CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ 56 #endif // CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_
OLDNEW
« no previous file with comments | « cc/animation/timing_function.cc ('k') | cc/blink/web_filter_animation_curve_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698