| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #include "core/animation/CompositorAnimations.h" | 33 #include "core/animation/CompositorAnimations.h" |
| 34 | 34 |
| 35 #include "core/animation/AnimatableDouble.h" | 35 #include "core/animation/AnimatableDouble.h" |
| 36 #include "core/animation/AnimatableFilterOperations.h" | 36 #include "core/animation/AnimatableFilterOperations.h" |
| 37 #include "core/animation/AnimatableTransform.h" | 37 #include "core/animation/AnimatableTransform.h" |
| 38 #include "core/animation/AnimatableValueTestHelper.h" | 38 #include "core/animation/AnimatableValueTestHelper.h" |
| 39 #include "core/animation/CompositorAnimationsImpl.h" | 39 #include "core/animation/CompositorAnimationsImpl.h" |
| 40 #include "core/animation/CompositorAnimationsTestHelper.h" | 40 #include "core/animation/CompositorAnimationsTestHelper.h" |
| 41 #include "core/platform/animation/TimingFunctionTestHelper.h" | 41 #include "core/platform/animation/TimingFunctionTestHelper.h" |
| 42 #include "core/platform/graphics/filters/FilterOperations.h" | |
| 43 #include "platform/geometry/IntSize.h" | 42 #include "platform/geometry/IntSize.h" |
| 43 #include "platform/graphics/filters/FilterOperations.h" |
| 44 #include "platform/transforms/TransformOperations.h" | 44 #include "platform/transforms/TransformOperations.h" |
| 45 #include "platform/transforms/TranslateTransformOperation.h" | 45 #include "platform/transforms/TranslateTransformOperation.h" |
| 46 #include "public/platform/WebAnimation.h" | 46 #include "public/platform/WebAnimation.h" |
| 47 #include "wtf/HashFunctions.h" | 47 #include "wtf/HashFunctions.h" |
| 48 #include "wtf/OwnPtr.h" | 48 #include "wtf/OwnPtr.h" |
| 49 #include "wtf/PassOwnPtr.h" | 49 #include "wtf/PassOwnPtr.h" |
| 50 #include "wtf/PassRefPtr.h" | 50 #include "wtf/PassRefPtr.h" |
| 51 #include "wtf/RefPtr.h" | 51 #include "wtf/RefPtr.h" |
| 52 | 52 |
| 53 #include <gmock/gmock.h> | 53 #include <gmock/gmock.h> |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 // Go! | 1073 // Go! |
| 1074 setCompositorForTesting(mockCompositor); | 1074 setCompositorForTesting(mockCompositor); |
| 1075 Vector<OwnPtr<blink::WebAnimation> > result; | 1075 Vector<OwnPtr<blink::WebAnimation> > result; |
| 1076 getAnimationOnCompositor(m_timing, *effect.get(), result); | 1076 getAnimationOnCompositor(m_timing, *effect.get(), result); |
| 1077 EXPECT_EQ(1U, result.size()); | 1077 EXPECT_EQ(1U, result.size()); |
| 1078 result[0].clear(); | 1078 result[0].clear(); |
| 1079 } | 1079 } |
| 1080 | 1080 |
| 1081 | 1081 |
| 1082 } // namespace WebCore | 1082 } // namespace WebCore |
| OLD | NEW |