| 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/animation/AnimationEffectReadOnly.h" | 36 #include "core/animation/AnimationEffectReadOnly.h" |
| 37 #include "core/animation/EffectModel.h" | 37 #include "core/animation/EffectModel.h" |
| 38 #include "core/animation/InterpolationEffect.h" | 38 #include "core/animation/InterpolationEffect.h" |
| 39 #include "core/animation/PropertyHandle.h" | 39 #include "core/animation/PropertyHandle.h" |
| 40 #include "core/animation/StringKeyframe.h" | 40 #include "core/animation/StringKeyframe.h" |
| 41 #include "core/animation/TransitionKeyframe.h" | 41 #include "core/animation/TransitionKeyframe.h" |
| 42 #include "core/animation/animatable/AnimatableValueKeyframe.h" | 42 #include "core/animation/animatable/AnimatableValueKeyframe.h" |
| 43 #include "platform/animation/TimingFunction.h" | 43 #include "platform/animation/TimingFunction.h" |
| 44 #include "platform/heap/Handle.h" | 44 #include "platform/heap/Handle.h" |
| 45 #include "wtf/HashMap.h" | 45 #include "platform/wtf/HashMap.h" |
| 46 #include "wtf/HashSet.h" | 46 #include "platform/wtf/HashSet.h" |
| 47 #include "wtf/PassRefPtr.h" | 47 #include "platform/wtf/PassRefPtr.h" |
| 48 #include "wtf/Vector.h" | 48 #include "platform/wtf/Vector.h" |
| 49 | 49 |
| 50 namespace blink { | 50 namespace blink { |
| 51 | 51 |
| 52 class Element; | 52 class Element; |
| 53 class KeyframeEffectModelTest; | 53 class KeyframeEffectModelTest; |
| 54 | 54 |
| 55 class CORE_EXPORT KeyframeEffectModelBase : public EffectModel { | 55 class CORE_EXPORT KeyframeEffectModelBase : public EffectModel { |
| 56 public: | 56 public: |
| 57 // FIXME: Implement accumulation. | 57 // FIXME: Implement accumulation. |
| 58 | 58 |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 273 |
| 274 template <> | 274 template <> |
| 275 inline bool KeyframeEffectModel< | 275 inline bool KeyframeEffectModel< |
| 276 TransitionKeyframe>::isTransitionKeyframeEffectModel() const { | 276 TransitionKeyframe>::isTransitionKeyframeEffectModel() const { |
| 277 return true; | 277 return true; |
| 278 } | 278 } |
| 279 | 279 |
| 280 } // namespace blink | 280 } // namespace blink |
| 281 | 281 |
| 282 #endif // KeyframeEffectModel_h | 282 #endif // KeyframeEffectModel_h |
| OLD | NEW |