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

Side by Side Diff: Source/core/animation/AnimatableImage.cpp

Issue 196573030: Web Animations API: Load resources referenced in element.animate() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
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 22 matching lines...) Expand all
33 33
34 #include "core/css/CSSImageValue.h" 34 #include "core/css/CSSImageValue.h"
35 #include "core/rendering/style/StyleGeneratedImage.h" 35 #include "core/rendering/style/StyleGeneratedImage.h"
36 #include "wtf/MathExtras.h" 36 #include "wtf/MathExtras.h"
37 37
38 namespace WebCore { 38 namespace WebCore {
39 39
40 // FIXME: Once cross-fade works on generated image types, remove this method. 40 // FIXME: Once cross-fade works on generated image types, remove this method.
41 bool AnimatableImage::usesDefaultInterpolationWith(const AnimatableValue* value) const 41 bool AnimatableImage::usesDefaultInterpolationWith(const AnimatableValue* value) const
42 { 42 {
43 RefPtrWillBeRawPtr<CSSValue> fromValue = toCSSValue(); 43 if (!m_value->isImageValue())
44 if (fromValue->isImageGeneratorValue())
45 return true; 44 return true;
46 if (!fromValue->isImageValue() && !m_image->isImageResource()) 45 if (!toAnimatableImage(value)->toCSSValue()->isImageValue())
47 return true;
48 const AnimatableImage* image = toAnimatableImage(value);
49 RefPtrWillBeRawPtr<CSSValue> toValue = image->toCSSValue();
50 if (toValue->isImageGeneratorValue())
51 return true;
52 if (!toValue->isImageValue() && !image->m_image->isImageResource())
53 return true; 46 return true;
54 return false; 47 return false;
55 } 48 }
56 49
57 PassRefPtr<AnimatableValue> AnimatableImage::interpolateTo(const AnimatableValue * value, double fraction) const 50 PassRefPtr<AnimatableValue> AnimatableImage::interpolateTo(const AnimatableValue * value, double fraction) const
58 { 51 {
59 if (fraction <= 0 || fraction >= 1) 52 if (fraction <= 0 || fraction >= 1 || usesDefaultInterpolationWith(value))
60 return defaultInterpolateTo(this, value, fraction); 53 return defaultInterpolateTo(this, value, fraction);
61 RefPtrWillBeRawPtr<CSSValue> fromValue = toCSSValue(); 54
62 // FIXME: Once cross-fade works on generated image types, remove this check. 55 CSSValue* fromValue = toCSSValue();
63 if (fromValue->isImageGeneratorValue()) 56 CSSValue* toValue = toAnimatableImage(value)->toCSSValue();
64 return defaultInterpolateTo(this, value, fraction); 57 ASSERT(fromValue->isImageValue());
65 if (!fromValue->isImageValue() && !fromValue->isImageGeneratorValue()) { 58 ASSERT(toValue->isImageValue());
66 if (!m_image->isImageResource()) 59
67 return defaultInterpolateTo(this, value, fraction);
68 ImageResource* resource = static_cast<ImageResource*>(m_image->data());
69 fromValue = CSSImageValue::create(resource->url(), m_image.get());
70 }
71 const AnimatableImage* image = toAnimatableImage(value);
72 RefPtrWillBeRawPtr<CSSValue> toValue = image->toCSSValue();
73 // FIXME: Once cross-fade works on generated image types, remove this check.
dstockwell 2014/03/18 01:02:35 Does this work now?
alancutter (OOO until 2018) 2014/03/18 02:43:53 This FIXME is still on the usesDefaultInterpolatio
74 if (toValue->isImageGeneratorValue())
75 return defaultInterpolateTo(this, value, fraction);
76 if (!toValue->isImageValue() && !toValue->isImageGeneratorValue()) {
77 if (!image->m_image->isImageResource())
78 return defaultInterpolateTo(this, value, fraction);
79 ImageResource* resource = static_cast<ImageResource*>(image->m_image->da ta());
80 toValue = CSSImageValue::create(resource->url(), image->m_image.get());
81 }
82 RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::cr eate(fromValue, toValue); 60 RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::cr eate(fromValue, toValue);
83 crossfadeValue->setPercentage(CSSPrimitiveValue::create(fraction, CSSPrimiti veValue::CSS_NUMBER)); 61 crossfadeValue->setPercentage(CSSPrimitiveValue::create(fraction, CSSPrimiti veValue::CSS_NUMBER));
84 return create(StyleGeneratedImage::create(crossfadeValue.get()).get()); 62 return create(crossfadeValue);
85 } 63 }
86 64
87 PassRefPtr<AnimatableValue> AnimatableImage::addWith(const AnimatableValue* valu e) const 65 PassRefPtr<AnimatableValue> AnimatableImage::addWith(const AnimatableValue* valu e) const
88 { 66 {
89 // FIXME: Correct procedure is defined here: http://dev.w3.org/fxtf/web-anim ations/#the--image--type 67 // FIXME: Correct procedure is defined here: http://dev.w3.org/fxtf/web-anim ations/#the--image--type
90 return defaultAddWith(this, value); 68 return defaultAddWith(this, value);
91 } 69 }
92 70
93 bool AnimatableImage::equalTo(const AnimatableValue* value) const 71 bool AnimatableImage::equalTo(const AnimatableValue* value) const
94 { 72 {
95 return StyleImage::imagesEquivalent(m_image.get(), toAnimatableImage(value)- >m_image.get()); 73 return m_value->equals(*toAnimatableImage(value)->m_value.get());
96 } 74 }
97 75
98 } 76 }
OLDNEW
« no previous file with comments | « Source/core/animation/AnimatableImage.h ('k') | Source/core/animation/AnimatableValueTestHelper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698