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

Unified Diff: third_party/WebKit/Source/core/svg/properties/SVGProperty.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/svg/properties/SVGListPropertyTearOffHelper.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/properties/SVGProperty.h
diff --git a/third_party/WebKit/Source/core/svg/properties/SVGProperty.h b/third_party/WebKit/Source/core/svg/properties/SVGProperty.h
index e1cf91c05d108ea3a6baabb25bee1f66bf6e73a4..2538e50932d2f274747592d36702511506da9adf 100644
--- a/third_party/WebKit/Source/core/svg/properties/SVGProperty.h
+++ b/third_party/WebKit/Source/core/svg/properties/SVGProperty.h
@@ -51,12 +51,14 @@ class SVGPropertyBase : public GarbageCollectedFinalized<SVGPropertyBase> {
virtual ~SVGPropertyBase() {}
// FIXME: remove this in WebAnimations transition.
- // This is used from SVGAnimatedNewPropertyAnimator for its animate-by-string implementation.
+ // This is used from SVGAnimatedNewPropertyAnimator for its animate-by-string
+ // implementation.
virtual SVGPropertyBase* cloneForAnimation(const String&) const = 0;
virtual String valueAsString() const = 0;
- // FIXME: remove below and just have this inherit AnimatableValue in WebAnimations transition.
+ // FIXME: remove below and just have this inherit AnimatableValue in
+ // WebAnimations transition.
virtual void add(SVGPropertyBase*, SVGElement*) = 0;
virtual void calculateAnimatedValue(SVGAnimationElement*,
float percentage,
@@ -84,9 +86,9 @@ class SVGPropertyBase : public GarbageCollectedFinalized<SVGPropertyBase> {
SVGPropertyBase() : m_ownerList(nullptr) {}
private:
- // Oilpan: the back reference to the owner should be a Member, but this can create
- // cycles when SVG properties meet the off-heap InterpolationValue hierarchy.
- // Not tracing it is safe, albeit an undesirable state of affairs.
+ // Oilpan: the back reference to the owner should be a Member, but this can
+ // create cycles when SVG properties meet the off-heap InterpolationValue
+ // hierarchy. Not tracing it is safe, albeit an undesirable state of affairs.
// See http://crbug.com/528275 for the detail.
UntracedMember<SVGPropertyBase> m_ownerList;
};
« no previous file with comments | « third_party/WebKit/Source/core/svg/properties/SVGListPropertyTearOffHelper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698