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

Side by Side Diff: content/renderer/compositor_bindings/web_animation_curve_common.cc

Issue 317163002: Moving compositor_bindings from webkit to content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changing dependencies due to failing ios bots Created 6 years, 6 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 #include "webkit/renderer/compositor_bindings/web_animation_curve_common.h" 5 #include "content/renderer/compositor_bindings/web_animation_curve_common.h"
6 6
7 #include "cc/animation/timing_function.h" 7 #include "cc/animation/timing_function.h"
8 8
9 namespace webkit { 9 namespace content {
10 10
11 scoped_ptr<cc::TimingFunction> CreateTimingFunction( 11 scoped_ptr<cc::TimingFunction> CreateTimingFunction(
12 blink::WebAnimationCurve::TimingFunctionType type) { 12 blink::WebAnimationCurve::TimingFunctionType type) {
13 switch (type) { 13 switch (type) {
14 case blink::WebAnimationCurve::TimingFunctionTypeEase: 14 case blink::WebAnimationCurve::TimingFunctionTypeEase:
15 return cc::EaseTimingFunction::Create(); 15 return cc::EaseTimingFunction::Create();
16 case blink::WebAnimationCurve::TimingFunctionTypeEaseIn: 16 case blink::WebAnimationCurve::TimingFunctionTypeEaseIn:
17 return cc::EaseInTimingFunction::Create(); 17 return cc::EaseInTimingFunction::Create();
18 case blink::WebAnimationCurve::TimingFunctionTypeEaseOut: 18 case blink::WebAnimationCurve::TimingFunctionTypeEaseOut:
19 return cc::EaseOutTimingFunction::Create(); 19 return cc::EaseOutTimingFunction::Create();
20 case blink::WebAnimationCurve::TimingFunctionTypeEaseInOut: 20 case blink::WebAnimationCurve::TimingFunctionTypeEaseInOut:
21 return cc::EaseInOutTimingFunction::Create(); 21 return cc::EaseInOutTimingFunction::Create();
22 case blink::WebAnimationCurve::TimingFunctionTypeLinear: 22 case blink::WebAnimationCurve::TimingFunctionTypeLinear:
23 return scoped_ptr<cc::TimingFunction>(); 23 return scoped_ptr<cc::TimingFunction>();
24 } 24 }
25 return scoped_ptr<cc::TimingFunction>(); 25 return scoped_ptr<cc::TimingFunction>();
26 } 26 }
27 27
28 } // namespace webkit 28 } // namespace content
29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698