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

Side by Side Diff: Source/core/animation/animatable/AnimatableSVGPaint.h

Issue 926963003: InlinedVisitor: Migrate animation to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 { 54 {
55 return adoptRefWillBeNoop(new AnimatableSVGPaint(type, visitedLinkType, color, uri, visitedLinkURI)); 55 return adoptRefWillBeNoop(new AnimatableSVGPaint(type, visitedLinkType, color, uri, visitedLinkURI));
56 } 56 }
57 SVGPaintType paintType() const { return m_type; }; 57 SVGPaintType paintType() const { return m_type; };
58 SVGPaintType visitedLinkPaintType() const { return m_visitedLinkType; }; 58 SVGPaintType visitedLinkPaintType() const { return m_visitedLinkType; };
59 Color color() const { return m_color->color(); }; 59 Color color() const { return m_color->color(); };
60 Color visitedLinkColor() const { return m_color->visitedLinkColor(); }; 60 Color visitedLinkColor() const { return m_color->visitedLinkColor(); };
61 const String& uri() const { return m_uri; }; 61 const String& uri() const { return m_uri; };
62 const String& visitedLinkURI() const { return m_visitedLinkURI; }; 62 const String& visitedLinkURI() const { return m_visitedLinkURI; };
63 63
64 virtual void trace(Visitor* visitor) override 64 DEFINE_INLINE_VIRTUAL_TRACE()
65 { 65 {
66 visitor->trace(m_color); 66 visitor->trace(m_color);
67 AnimatableValue::trace(visitor); 67 AnimatableValue::trace(visitor);
68 } 68 }
69 69
70 protected: 70 protected:
71 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const Animatab leValue*, double fraction) const override; 71 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const Animatab leValue*, double fraction) const override;
72 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const over ride; 72 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const over ride;
73 73
74 private: 74 private:
(...skipping 14 matching lines...) Expand all
89 RefPtrWillBeMember<AnimatableColor> m_color; 89 RefPtrWillBeMember<AnimatableColor> m_color;
90 String m_uri; 90 String m_uri;
91 String m_visitedLinkURI; 91 String m_visitedLinkURI;
92 }; 92 };
93 93
94 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableSVGPaint, isSVGPaint()); 94 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableSVGPaint, isSVGPaint());
95 95
96 } // namespace blink 96 } // namespace blink
97 97
98 #endif // AnimatableSVGPaint_h 98 #endif // AnimatableSVGPaint_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698