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

Side by Side Diff: Source/core/animation/AnimationEffect.h

Issue 22707006: Web Animations CSS: Assert underlying value is not used (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review changes Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/animation/KeyframeAnimationEffect.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/core/animation/KeyframeAnimationEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698