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

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

Issue 26896005: IDL compiler: remove special case capitalization (cssText, xmllang, xmlbase, xmlspace) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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) 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 PassRefPtr<CSSValue> getPresentationAttribute(const String& name); 59 PassRefPtr<CSSValue> getPresentationAttribute(const String& name);
60 bool isKnownAttribute(const QualifiedName&); 60 bool isKnownAttribute(const QualifiedName&);
61 static bool isAnimatableCSSProperty(const QualifiedName&); 61 static bool isAnimatableCSSProperty(const QualifiedName&);
62 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope ) const; 62 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope ) const;
63 virtual bool needsPendingResourceHandling() const { return true; } 63 virtual bool needsPendingResourceHandling() const { return true; }
64 64
65 bool instanceUpdatesBlocked() const; 65 bool instanceUpdatesBlocked() const;
66 void setInstanceUpdatesBlocked(bool); 66 void setInstanceUpdatesBlocked(bool);
67 67
68 String xmlbase() const; 68 String xmlbase() const;
69 void setXmlbase(const String&); 69 void setXMLbase(const String&);
70 70
71 SVGSVGElement* ownerSVGElement() const; 71 SVGSVGElement* ownerSVGElement() const;
72 SVGElement* viewportElement() const; 72 SVGElement* viewportElement() const;
73 73
74 SVGDocumentExtensions* accessDocumentSVGExtensions(); 74 SVGDocumentExtensions* accessDocumentSVGExtensions();
75 75
76 virtual bool isSVGGraphicsElement() const { return false; } 76 virtual bool isSVGGraphicsElement() const { return false; }
77 virtual bool isSVGSVGElement() const { return false; } 77 virtual bool isSVGSVGElement() const { return false; }
78 virtual bool isFilterEffect() const { return false; } 78 virtual bool isFilterEffect() const { return false; }
79 virtual bool isGradientStop() const { return false; } 79 virtual bool isGradientStop() const { return false; }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 return DefaultHash<QualifiedName>::Hash::hash(key); 205 return DefaultHash<QualifiedName>::Hash::hash(key);
206 } 206 }
207 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a .matches(b); } 207 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a .matches(b); }
208 }; 208 };
209 209
210 DEFINE_NODE_TYPE_CASTS(SVGElement, isSVGElement()); 210 DEFINE_NODE_TYPE_CASTS(SVGElement, isSVGElement());
211 211
212 } 212 }
213 213
214 #endif 214 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698