| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef CompositorAnimationsImpl_h | 31 #ifndef CompositorAnimationsImpl_h |
| 32 #define CompositorAnimationsImpl_h | 32 #define CompositorAnimationsImpl_h |
| 33 | 33 |
| 34 #include "core/CoreExport.h" | 34 #include "core/CoreExport.h" |
| 35 #include "core/animation/EffectModel.h" | 35 #include "core/animation/EffectModel.h" |
| 36 #include "core/animation/KeyframeEffectModel.h" | 36 #include "core/animation/KeyframeEffectModel.h" |
| 37 #include "core/animation/Timing.h" | 37 #include "core/animation/Timing.h" |
| 38 #include "platform/animation/TimingFunction.h" | 38 #include "platform/animation/TimingFunction.h" |
| 39 #include "public/platform/WebCompositorAnimation.h" | 39 #include "platform/animation/WebCompositorAnimation.h" |
| 40 #include "wtf/Allocator.h" | 40 #include "wtf/Allocator.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class WebCompositorAnimationCurve; | 44 class WebCompositorAnimationCurve; |
| 45 | 45 |
| 46 class CORE_EXPORT CompositorAnimationsImpl { | 46 class CORE_EXPORT CompositorAnimationsImpl { |
| 47 STATIC_ONLY(CompositorAnimationsImpl); | 47 STATIC_ONLY(CompositorAnimationsImpl); |
| 48 private: | 48 private: |
| 49 struct CompositorTiming { | 49 struct CompositorTiming { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 72 | 72 |
| 73 static void addKeyframesToCurve(WebCompositorAnimationCurve&, const Animatab
leValuePropertySpecificKeyframeVector&, const Timing&); | 73 static void addKeyframesToCurve(WebCompositorAnimationCurve&, const Animatab
leValuePropertySpecificKeyframeVector&, const Timing&); |
| 74 | 74 |
| 75 friend class CompositorAnimations; | 75 friend class CompositorAnimations; |
| 76 friend class AnimationCompositorAnimationsTest; | 76 friend class AnimationCompositorAnimationsTest; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace blink | 79 } // namespace blink |
| 80 | 80 |
| 81 #endif | 81 #endif |
| OLD | NEW |