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

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed)

Created:
5 years, 5 months ago by tkent
Modified:
5 years, 5 months ago
Reviewers:
yosin_UTC9
CC:
blink-reviews, Eric Willigers, krit, rjwright, blink-reviews-style_chromium.org, blink-reviews-animation_chromium.org, kouhei+svg_chromium.org, fs, shans, f(malita), darktears, gyuyoung2, Stephen Chennney, pdr+svgwatchlist_chromium.org, rwlbuis
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Fix virtual/override/final usage in Source/core/svg/. - We should specify just one of them to a function. This was done by the following command. % sed -i "" -E "s/virtual (.*) final/\1 final/g; s/virtual (.*) override/\1 override/g; s/override final/final/g" <files> - Non-base virtual destructors should have |override| keywords. This CL has no behavior changes. BUG=417463 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=198464

Patch Set 1 #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+593 lines, -596 lines) Patch
M Source/core/svg/SVGAElement.h View 1 chunk +15 lines, -15 lines 0 comments Download
M Source/core/svg/SVGAngle.h View 3 chunks +10 lines, -10 lines 0 comments Download
M Source/core/svg/SVGAngleTearOff.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimateElement.h View 2 chunks +14 lines, -14 lines 0 comments Download
M Source/core/svg/SVGAnimateMotionElement.h View 3 chunks +13 lines, -13 lines 0 comments Download
M Source/core/svg/SVGAnimateTransformElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimatedAngle.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGAnimatedColor.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGAnimatedEnumerationBase.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedInteger.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedIntegerOptionalInteger.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGAnimatedNumber.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedNumberOptionalNumber.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGAnimatedPath.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimationElement.h View 3 chunks +8 lines, -8 lines 0 comments Download
M Source/core/svg/SVGBoolean.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGCircleElement.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/svg/SVGClipPathElement.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGComponentTransferFunctionElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGCursorElement.h View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGDefsElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGDescElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGDiscardElement.h View 1 chunk +9 lines, -9 lines 0 comments Download
M Source/core/svg/SVGElement.h View 5 chunks +18 lines, -18 lines 0 comments Download
M Source/core/svg/SVGEllipseElement.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/svg/SVGEnumeration.h View 2 chunks +8 lines, -10 lines 0 comments Download
M Source/core/svg/SVGFEBlendElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFEColorMatrixElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFEComponentTransferElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFECompositeElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFEConvolveMatrixElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFEDiffuseLightingElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFEDisplacementMapElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFEDistantLightElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEDropShadowElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFloodElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEGaussianBlurElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEImageElement.h View 2 chunks +7 lines, -7 lines 0 comments Download
M Source/core/svg/SVGFELightElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFEMergeElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEMergeNodeElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEMorphologyElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFEOffsetElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEPointLightElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFESpecularLightingElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFESpotLightElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFETileElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFETurbulenceElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFilterElement.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGFilterPrimitiveStandardAttributes.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGForeignObjectElement.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/svg/SVGGElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGGeometryElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGGradientElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGGraphicsElement.h View 3 chunks +7 lines, -7 lines 0 comments Download
M Source/core/svg/SVGImageElement.h View 1 chunk +12 lines, -12 lines 0 comments Download
M Source/core/svg/SVGImageLoader.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGInteger.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGIntegerOptionalInteger.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGLength.h View 3 chunks +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGLengthList.h View 2 chunks +8 lines, -8 lines 0 comments Download
M Source/core/svg/SVGLineElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGLinearGradientElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGMPathElement.h View 2 chunks +6 lines, -6 lines 0 comments Download
M Source/core/svg/SVGMarkerElement.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/svg/SVGMaskElement.h View 1 chunk +9 lines, -9 lines 0 comments Download
M Source/core/svg/SVGMetadataElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGNumber.h View 2 chunks +6 lines, -6 lines 0 comments Download
M Source/core/svg/SVGNumberList.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGNumberOptionalNumber.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGPathBuilder.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGPathByteStreamBuilder.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGPathByteStreamSource.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGPathElement.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGPathSegArcAbs.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegArcRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegClosePath.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegCurvetoCubicAbs.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegCurvetoCubicRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegCurvetoQuadraticRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegLinetoAbs.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegLinetoHorizontalAbs.h View 1 chunk +2 lines, -2 lines 1 comment Download
M Source/core/svg/SVGPathSegLinetoHorizontalRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegLinetoRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegLinetoVerticalAbs.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegLinetoVerticalRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegList.h View 2 chunks +7 lines, -7 lines 0 comments Download
M Source/core/svg/SVGPathSegListBuilder.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGPathSegListSource.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGPathSegMovetoAbs.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathSegMovetoRel.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathStringBuilder.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGPathStringSource.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGPathTraversalStateBuilder.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGPatternElement.h View 2 chunks +7 lines, -7 lines 0 comments Download
M Source/core/svg/SVGPoint.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGPointList.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGPolyElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGPreserveAspectRatio.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGRadialGradientElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGRect.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGRectElement.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/svg/SVGSVGElement.h View 2 chunks +13 lines, -13 lines 0 comments Download
M Source/core/svg/SVGSVGElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGScriptElement.h View 2 chunks +28 lines, -28 lines 0 comments Download
M Source/core/svg/SVGSetElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGStaticStringList.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/svg/SVGStopElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGString.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGStringList.h View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGStyleElement.h View 2 chunks +14 lines, -14 lines 0 comments Download
M Source/core/svg/SVGSwitchElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGSymbolElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTSpanElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTextContentElement.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGTextContentElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTextElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTextPathElement.h View 1 chunk +8 lines, -8 lines 0 comments Download
M Source/core/svg/SVGTextPositioningElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTitleElement.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/SVGTransform.h View 2 chunks +6 lines, -6 lines 0 comments Download
M Source/core/svg/SVGTransformList.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/svg/SVGTransformListTearOff.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTransformTearOff.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGUnknownElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGUseElement.h View 4 chunks +13 lines, -13 lines 0 comments Download
M Source/core/svg/SVGViewElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGZoomEvent.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/animation/SVGSMILElement.h View 3 chunks +7 lines, -7 lines 0 comments Download
M Source/core/svg/animation/SVGSMILElement.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/svg/graphics/SVGImage.h View 1 chunk +1 line, -2 lines 0 comments Download
M Source/core/svg/graphics/SVGImageForContainer.h View 2 chunks +10 lines, -10 lines 0 comments Download
M Source/core/svg/graphics/filters/SVGFEImage.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/svg/graphics/filters/SVGFilter.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/svg/properties/SVGAnimatedProperty.h View 4 chunks +10 lines, -10 lines 0 comments Download
M Source/core/svg/properties/SVGPropertyTearOff.h View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 6 (2 generated)
tkent
yosin@, please have a look at this.
5 years, 5 months ago (2015-07-08 04:51:22 UTC) #2
yosin_UTC9
rs lgtm https://codereview.chromium.org/1212253012/diff/1/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h File Source/core/svg/SVGPathSegLinetoHorizontalAbs.h (right): https://codereview.chromium.org/1212253012/diff/1/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h#newcode47 Source/core/svg/SVGPathSegLinetoHorizontalAbs.h:47: String pathSegTypeAsLetter() const override { return "H"; ...
5 years, 5 months ago (2015-07-08 05:01:33 UTC) #3
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1212253012/1
5 years, 5 months ago (2015-07-08 05:02:06 UTC) #5
commit-bot: I haz the power
5 years, 5 months ago (2015-07-08 05:06:57 UTC) #6
Message was sent while issue was closed.
Committed patchset #1 (id:1) as
https://src.chromium.org/viewvc/blink?view=rev&revision=198464

Powered by Google App Engine
This is Rietveld 408576698