| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 enum CompositeOperation { | 45 enum CompositeOperation { |
| 46 CompositeReplace, | 46 CompositeReplace, |
| 47 CompositeAdd, | 47 CompositeAdd, |
| 48 }; | 48 }; |
| 49 // Encapsulates the value which results from applying a set of composition o
perations onto an | 49 // Encapsulates the value which results from applying a set of composition o
perations onto an |
| 50 // underlying value. It is used to represent the output of the effect phase
of the Web | 50 // underlying value. It is used to represent the output of the effect phase
of the Web |
| 51 // Animations model. | 51 // Animations model. |
| 52 class CompositableValue : public RefCounted<CompositableValue> { | 52 class CompositableValue : public RefCounted<CompositableValue> { |
| 53 public: | 53 public: |
| 54 virtual ~CompositableValue() { } | 54 virtual ~CompositableValue() { } |
| 55 virtual bool dependsOnUnderlyingValue() const = 0; |
| 55 virtual PassRefPtr<AnimatableValue> compositeOnto(const AnimatableValue*
) const = 0; | 56 virtual PassRefPtr<AnimatableValue> compositeOnto(const AnimatableValue*
) const = 0; |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 virtual ~AnimationEffect() { } | 59 virtual ~AnimationEffect() { } |
| 59 typedef HashMap<CSSPropertyID, RefPtr<CompositableValue> > CompositableValue
Map; | 60 typedef HashMap<CSSPropertyID, RefPtr<CompositableValue> > CompositableValue
Map; |
| 60 virtual PassOwnPtr<CompositableValueMap> sample(int iteration, double fracti
on) const = 0; | 61 virtual PassOwnPtr<CompositableValueMap> sample(int iteration, double fracti
on) const = 0; |
| 61 }; | 62 }; |
| 62 | 63 |
| 63 } // namespace WebCore | 64 } // namespace WebCore |
| 64 | 65 |
| 65 #endif // AnimationEffect_h | 66 #endif // AnimationEffect_h |
| OLD | NEW |