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

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

Issue 140253013: Define accelerated steps time function. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated patch: remove question about velocity Created 6 years, 3 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
« 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 14 matching lines...) Expand all
25 CC_BLINK_EXPORT WebFilterAnimationCurveImpl(); 25 CC_BLINK_EXPORT WebFilterAnimationCurveImpl();
26 virtual ~WebFilterAnimationCurveImpl(); 26 virtual ~WebFilterAnimationCurveImpl();
27 27
28 // blink::WebCompositorAnimationCurve implementation. 28 // blink::WebCompositorAnimationCurve implementation.
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 int steps,
36 bool steps_at_start);
37 virtual void add(const blink::WebFilterKeyframe& keyframe,
35 double x1, 38 double x1,
36 double y1, 39 double y1,
37 double x2, 40 double x2,
38 double y2); 41 double y2);
39 42
40 scoped_ptr<cc::AnimationCurve> CloneToAnimationCurve() const; 43 scoped_ptr<cc::AnimationCurve> CloneToAnimationCurve() const;
41 44
42 private: 45 private:
43 scoped_ptr<cc::KeyframedFilterAnimationCurve> curve_; 46 scoped_ptr<cc::KeyframedFilterAnimationCurve> curve_;
44 47
45 DISALLOW_COPY_AND_ASSIGN(WebFilterAnimationCurveImpl); 48 DISALLOW_COPY_AND_ASSIGN(WebFilterAnimationCurveImpl);
46 }; 49 };
47 50
48 } // namespace cc_blink 51 } // namespace cc_blink
49 52
50 #endif // CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ 53 #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