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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGPatternElement.h

Issue 2853223002: getScreenCTM on <use> should not include the additional translation (Closed)
Patch Set: Created 3 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 30 matching lines...) Expand all
41 public SVGTests, 41 public SVGTests,
42 public SVGFitToViewBox { 42 public SVGFitToViewBox {
43 DEFINE_WRAPPERTYPEINFO(); 43 DEFINE_WRAPPERTYPEINFO();
44 USING_GARBAGE_COLLECTED_MIXIN(SVGPatternElement); 44 USING_GARBAGE_COLLECTED_MIXIN(SVGPatternElement);
45 45
46 public: 46 public:
47 DECLARE_NODE_FACTORY(SVGPatternElement); 47 DECLARE_NODE_FACTORY(SVGPatternElement);
48 48
49 void CollectPatternAttributes(PatternAttributes&) const; 49 void CollectPatternAttributes(PatternAttributes&) const;
50 50
51 AffineTransform LocalCoordinateSpaceTransform() const override; 51 AffineTransform LocalCoordinateSpaceTransform(CTMScope) const override;
52 52
53 SVGAnimatedLength* x() const { return x_.Get(); } 53 SVGAnimatedLength* x() const { return x_.Get(); }
54 SVGAnimatedLength* y() const { return y_.Get(); } 54 SVGAnimatedLength* y() const { return y_.Get(); }
55 SVGAnimatedLength* width() const { return width_.Get(); } 55 SVGAnimatedLength* width() const { return width_.Get(); }
56 SVGAnimatedLength* height() const { return height_.Get(); } 56 SVGAnimatedLength* height() const { return height_.Get(); }
57 SVGAnimatedTransformList* patternTransform() { 57 SVGAnimatedTransformList* patternTransform() {
58 return pattern_transform_.Get(); 58 return pattern_transform_.Get();
59 } 59 }
60 const SVGAnimatedTransformList* patternTransform() const { 60 const SVGAnimatedTransformList* patternTransform() const {
61 return pattern_transform_.Get(); 61 return pattern_transform_.Get();
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 Member<SVGAnimatedLength> height_; 100 Member<SVGAnimatedLength> height_;
101 Member<SVGAnimatedTransformList> pattern_transform_; 101 Member<SVGAnimatedTransformList> pattern_transform_;
102 Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> pattern_units_; 102 Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> pattern_units_;
103 Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> 103 Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>>
104 pattern_content_units_; 104 pattern_content_units_;
105 }; 105 };
106 106
107 } // namespace blink 107 } // namespace blink
108 108
109 #endif // SVGPatternElement_h 109 #endif // SVGPatternElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGGraphicsElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGPatternElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698