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

Side by Side Diff: Source/core/svg/SVGElement.h

Issue 196173020: Remove deprecated getPresentationAttribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT 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
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/svg/SVGElement.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) 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 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 * Copyright (C) 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2009 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyName ToIdMap, const QualifiedName& attrName); 48 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyName ToIdMap, const QualifiedName& attrName);
49 49
50 class SVGElement : public Element { 50 class SVGElement : public Element {
51 public: 51 public:
52 virtual ~SVGElement(); 52 virtual ~SVGElement();
53 53
54 bool isOutermostSVGSVGElement() const; 54 bool isOutermostSVGSVGElement() const;
55 55
56 virtual String title() const OVERRIDE; 56 virtual String title() const OVERRIDE;
57 bool hasRelativeLengths() const { return !m_elementsWithRelativeLengths.isEm pty(); } 57 bool hasRelativeLengths() const { return !m_elementsWithRelativeLengths.isEm pty(); }
58 PassRefPtrWillBeRawPtr<CSSValue> getPresentationAttribute(const AtomicString & name);
59 static bool isAnimatableCSSProperty(const QualifiedName&); 58 static bool isAnimatableCSSProperty(const QualifiedName&);
60 enum CTMScope { 59 enum CTMScope {
61 NearestViewportScope, // Used by SVGGraphicsElement::getCTM() 60 NearestViewportScope, // Used by SVGGraphicsElement::getCTM()
62 ScreenScope, // Used by SVGGraphicsElement::getScreenCTM() 61 ScreenScope, // Used by SVGGraphicsElement::getScreenCTM()
63 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List( ) 62 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List( )
64 }; 63 };
65 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; 64 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const;
66 virtual bool needsPendingResourceHandling() const { return true; } 65 virtual bool needsPendingResourceHandling() const { return true; }
67 66
68 bool instanceUpdatesBlocked() const; 67 bool instanceUpdatesBlocked() const;
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a .matches(b); } 226 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a .matches(b); }
228 }; 227 };
229 228
230 DEFINE_ELEMENT_TYPE_CASTS(SVGElement, isSVGElement()); 229 DEFINE_ELEMENT_TYPE_CASTS(SVGElement, isSVGElement());
231 230
232 template <> inline bool isElementOfType<const SVGElement>(const Node& node) { re turn node.isSVGElement(); } 231 template <> inline bool isElementOfType<const SVGElement>(const Node& node) { re turn node.isSVGElement(); }
233 232
234 } 233 }
235 234
236 #endif 235 #endif
OLDNEW
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698