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

Side by Side Diff: Source/core/svg/properties/SVGPropertyInfo.h

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove m_zoomAndPan Created 6 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) Research In Motion Limited 2011. All rights reserved. 2 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 AnimatedNumber, 45 AnimatedNumber,
46 AnimatedNumberList, 46 AnimatedNumberList,
47 AnimatedNumberOptionalNumber, 47 AnimatedNumberOptionalNumber,
48 AnimatedPath, 48 AnimatedPath,
49 AnimatedPoint, 49 AnimatedPoint,
50 AnimatedPoints, 50 AnimatedPoints,
51 AnimatedPreserveAspectRatio, 51 AnimatedPreserveAspectRatio,
52 AnimatedRect, 52 AnimatedRect,
53 AnimatedString, 53 AnimatedString,
54 AnimatedStringList, 54 AnimatedStringList,
55 AnimatedTransform,
55 AnimatedTransformList, 56 AnimatedTransformList,
56 AnimatedUnknown 57 AnimatedUnknown
57 }; 58 };
58 59
59 struct SVGPropertyInfo { 60 struct SVGPropertyInfo {
60 WTF_MAKE_FAST_ALLOCATED; 61 WTF_MAKE_FAST_ALLOCATED;
61 public: 62 public:
62 typedef void (*SynchronizeProperty)(SVGElement*); 63 typedef void (*SynchronizeProperty)(SVGElement*);
63 typedef PassRefPtr<SVGAnimatedProperty> (*LookupOrCreateWrapperForAnimatedPr operty)(SVGElement*); 64 typedef PassRefPtr<SVGAnimatedProperty> (*LookupOrCreateWrapperForAnimatedPr operty)(SVGElement*);
64 65
(...skipping 13 matching lines...) Expand all
78 AnimatedPropertyState animatedPropertyState; 79 AnimatedPropertyState animatedPropertyState;
79 const QualifiedName& attributeName; 80 const QualifiedName& attributeName;
80 const AtomicString& propertyIdentifier; 81 const AtomicString& propertyIdentifier;
81 SynchronizeProperty synchronizeProperty; 82 SynchronizeProperty synchronizeProperty;
82 LookupOrCreateWrapperForAnimatedProperty lookupOrCreateWrapperForAnimatedPro perty; 83 LookupOrCreateWrapperForAnimatedProperty lookupOrCreateWrapperForAnimatedPro perty;
83 }; 84 };
84 85
85 } 86 }
86 87
87 #endif // SVGPropertyInfo_h 88 #endif // SVGPropertyInfo_h
OLDNEW
« no previous file with comments | « Source/core/svg/properties/SVGMatrixTearOff.h ('k') | Source/core/svg/properties/SVGTransformListPropertyTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698