Chromium Code Reviews| 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. |
|
pdr.
2016/10/04 21:05:30
Super nit: one space after periods for consistency
Nico
2016/10/04 21:10:23
I use vim's gq to join lines manually, and it defa
|
| // See http://crbug.com/528275 for the detail. |
| UntracedMember<SVGPropertyBase> m_ownerList; |
| }; |