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

Side by Side Diff: content/renderer/compositor_bindings/web_animation_unittest.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 "base/memory/scoped_ptr.h" 5 #include "base/memory/scoped_ptr.h"
6 #include "content/renderer/compositor_bindings/web_animation_impl.h"
7 #include "content/renderer/compositor_bindings/web_float_animation_curve_impl.h"
6 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
7 #include "webkit/renderer/compositor_bindings/web_animation_impl.h"
8 #include "webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h"
9 9
10 using blink::WebAnimation; 10 using blink::WebAnimation;
11 using blink::WebAnimationCurve; 11 using blink::WebAnimationCurve;
12 using blink::WebFloatAnimationCurve; 12 using blink::WebFloatAnimationCurve;
13 13
14 namespace webkit { 14 namespace content {
15 namespace { 15 namespace {
16 16
17 TEST(WebAnimationTest, DefaultSettings) { 17 TEST(WebAnimationTest, DefaultSettings) {
18 scoped_ptr<WebAnimationCurve> curve(new WebFloatAnimationCurveImpl()); 18 scoped_ptr<WebAnimationCurve> curve(new WebFloatAnimationCurveImpl());
19 scoped_ptr<WebAnimation> animation( 19 scoped_ptr<WebAnimation> animation(
20 new WebAnimationImpl(*curve, WebAnimation::TargetPropertyOpacity, 1, 0)); 20 new WebAnimationImpl(*curve, WebAnimation::TargetPropertyOpacity, 1, 0));
21 21
22 // Ensure that the defaults are correct. 22 // Ensure that the defaults are correct.
23 EXPECT_EQ(1, animation->iterations()); 23 EXPECT_EQ(1, animation->iterations());
24 EXPECT_EQ(0, animation->startTime()); 24 EXPECT_EQ(0, animation->startTime());
(...skipping 24 matching lines...) Expand all
49 #if WEB_ANIMATION_SUPPORTS_FULL_DIRECTION 49 #if WEB_ANIMATION_SUPPORTS_FULL_DIRECTION
50 EXPECT_EQ(WebAnimation::DirectionReverse, animation->direction()); 50 EXPECT_EQ(WebAnimation::DirectionReverse, animation->direction());
51 #else 51 #else
52 EXPECT_TRUE(animation->alternatesDirection()); 52 EXPECT_TRUE(animation->alternatesDirection());
53 animation->setAlternatesDirection(false); 53 animation->setAlternatesDirection(false);
54 EXPECT_FALSE(animation->alternatesDirection()); 54 EXPECT_FALSE(animation->alternatesDirection());
55 #endif 55 #endif
56 } 56 }
57 57
58 } // namespace 58 } // namespace
59 } // namespace webkit 59 } // namespace content
60
OLDNEW
« no previous file with comments | « content/renderer/compositor_bindings/web_animation_impl.cc ('k') | content/renderer/compositor_bindings/web_blend_mode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698