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

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

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) Created 4 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
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, 2014 Apple Inc. All rights reserved. 4 * Copyright (C) 2009, 2014 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 NearestViewportScope, // Used by SVGGraphicsElement::getCTM() 78 NearestViewportScope, // Used by SVGGraphicsElement::getCTM()
79 ScreenScope, // Used by SVGGraphicsElement::getScreenCTM() 79 ScreenScope, // Used by SVGGraphicsElement::getScreenCTM()
80 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List() 80 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List()
81 }; 81 };
82 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; 82 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const;
83 virtual bool needsPendingResourceHandling() const { return true; } 83 virtual bool needsPendingResourceHandling() const { return true; }
84 84
85 bool instanceUpdatesBlocked() const; 85 bool instanceUpdatesBlocked() const;
86 void setInstanceUpdatesBlocked(bool); 86 void setInstanceUpdatesBlocked(bool);
87 87
88 // Records the SVG element as having a Web Animation on an SVG attribute that needs applying. 88 // Records the SVG element as having a Web Animation on an SVG attribute that
89 // needs applying.
89 void setWebAnimationsPending(); 90 void setWebAnimationsPending();
90 void applyActiveWebAnimations(); 91 void applyActiveWebAnimations();
91 92
92 void ensureAttributeAnimValUpdated(); 93 void ensureAttributeAnimValUpdated();
93 94
94 void setWebAnimatedAttribute(const QualifiedName& attribute, 95 void setWebAnimatedAttribute(const QualifiedName& attribute,
95 SVGPropertyBase*); 96 SVGPropertyBase*);
96 void clearWebAnimatedAttributes(); 97 void clearWebAnimatedAttributes();
97 98
98 void setAnimatedAttribute(const QualifiedName&, SVGPropertyBase*); 99 void setAnimatedAttribute(const QualifiedName&, SVGPropertyBase*);
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 inline bool isElementOfType<const thisType>(const SVGElement& element) { \ 344 inline bool isElementOfType<const thisType>(const SVGElement& element) { \
344 return is##thisType(element); \ 345 return is##thisType(element); \
345 } \ 346 } \
346 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) 347 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType)
347 348
348 } // namespace blink 349 } // namespace blink
349 350
350 #include "core/SVGElementTypeHelpers.h" 351 #include "core/SVGElementTypeHelpers.h"
351 352
352 #endif // SVGElement_h 353 #endif // SVGElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp ('k') | third_party/WebKit/Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698