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

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (Closed)

Created:
5 years, 5 months ago by tkent
Modified:
5 years, 5 months ago
Reviewers:
yosin_UTC9
CC:
blink-reviews, Manuel Rego, fs, eric.carlson_apple.com, kouhei+svg_chromium.org, rwlbuis, krit, szager+layoutwatch_chromium.org, jchaffraix+rendering, gyuyoung2, pdr+svgwatchlist_chromium.org, jfernandez, blink-reviews-style_chromium.org, zoltan1, eae+blinkwatch, philipj_slow, feature-media-reviews_chromium.org, blink-reviews-rendering, mlamouri+watch-blink_chromium.org, svillar, pdr+renderingwatchlist_chromium.org, leviw+renderwatch, f(malita), Stephen Chennney
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Fix virtual/override/final usage in Source/core/layout/. - 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=198748

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1378 lines, -1383 lines) Patch
M Source/core/layout/ClipPathOperation.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/layout/FloatingObjects.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/layout/ImageQualityControllerTest.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/layout/LayoutApplet.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/layout/LayoutBR.h View 1 chunk +10 lines, -10 lines 0 comments Download
M Source/core/layout/LayoutBlock.h View 15 chunks +42 lines, -42 lines 0 comments Download
M Source/core/layout/LayoutBlockFlow.h View 11 chunks +24 lines, -24 lines 0 comments Download
M Source/core/layout/LayoutBox.h View 14 chunks +51 lines, -51 lines 0 comments Download
M Source/core/layout/LayoutBoxModelObject.h View 5 chunks +9 lines, -9 lines 0 comments Download
M Source/core/layout/LayoutButton.h View 1 chunk +14 lines, -14 lines 0 comments Download
M Source/core/layout/LayoutCounter.h View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/layout/LayoutDeprecatedFlexibleBox.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/layout/LayoutDetailsMarker.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/layout/LayoutEmbeddedObject.h View 2 chunks +12 lines, -12 lines 0 comments Download
M Source/core/layout/LayoutFieldset.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/layout/LayoutFileUploadControl.h View 2 chunks +8 lines, -8 lines 0 comments Download
M Source/core/layout/LayoutFlexibleBox.h View 1 chunk +12 lines, -12 lines 0 comments Download
M Source/core/layout/LayoutFlowThread.h View 3 chunks +8 lines, -8 lines 0 comments Download
M Source/core/layout/LayoutFrame.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/layout/LayoutFrameSet.h View 2 chunks +10 lines, -10 lines 0 comments Download
M Source/core/layout/LayoutFullScreen.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/layout/LayoutFullScreen.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/layout/LayoutGrid.h View 3 chunks +11 lines, -11 lines 0 comments Download
M Source/core/layout/LayoutHTMLCanvas.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/layout/LayoutIFrame.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/LayoutImage.h View 2 chunks +21 lines, -21 lines 0 comments Download
M Source/core/layout/LayoutImageResourceStyleImage.h View 1 chunk +12 lines, -12 lines 0 comments Download
M Source/core/layout/LayoutInline.h View 6 chunks +49 lines, -49 lines 0 comments Download
M Source/core/layout/LayoutListBox.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/LayoutListItem.h View 1 chunk +9 lines, -9 lines 0 comments Download
M Source/core/layout/LayoutListMarker.h View 3 chunks +17 lines, -18 lines 0 comments Download
M Source/core/layout/LayoutMedia.h View 2 chunks +12 lines, -12 lines 0 comments Download
M Source/core/layout/LayoutMenuList.h View 2 chunks +42 lines, -42 lines 0 comments Download
M Source/core/layout/LayoutMeter.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/LayoutMultiColumnFlowThread.h View 4 chunks +21 lines, -21 lines 0 comments Download
M Source/core/layout/LayoutMultiColumnSet.h View 3 chunks +11 lines, -11 lines 0 comments Download
M Source/core/layout/LayoutMultiColumnSpannerPlaceholder.h View 2 chunks +11 lines, -11 lines 0 comments Download
M Source/core/layout/LayoutObject.h View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/layout/LayoutPagedFlowThread.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/layout/LayoutPart.h View 2 chunks +13 lines, -13 lines 0 comments Download
M Source/core/layout/LayoutPartTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/LayoutProgress.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/layout/LayoutQuote.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/LayoutReplaced.h View 2 chunks +18 lines, -18 lines 0 comments Download
M Source/core/layout/LayoutReplica.h View 1 chunk +7 lines, -8 lines 0 comments Download
M Source/core/layout/LayoutRuby.h View 1 chunk +15 lines, -15 lines 0 comments Download
M Source/core/layout/LayoutRubyBase.h View 1 chunk +6 lines, -7 lines 0 comments Download
M Source/core/layout/LayoutRubyRun.h View 3 chunks +10 lines, -10 lines 0 comments Download
M Source/core/layout/LayoutRubyText.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/layout/LayoutScrollbar.h View 3 chunks +9 lines, -9 lines 0 comments Download
M Source/core/layout/LayoutScrollbarPart.h View 1 chunk +22 lines, -23 lines 0 comments Download
M Source/core/layout/LayoutScrollbarTheme.h View 1 chunk +23 lines, -23 lines 0 comments Download
M Source/core/layout/LayoutSearchField.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/layout/LayoutSlider.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/LayoutSliderContainer.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/layout/LayoutSliderThumb.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/LayoutTable.h View 7 chunks +33 lines, -33 lines 0 comments Download
M Source/core/layout/LayoutTableCaption.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/layout/LayoutTableCell.h View 3 chunks +31 lines, -31 lines 0 comments Download
M Source/core/layout/LayoutTableCol.h View 1 chunk +14 lines, -14 lines 0 comments Download
M Source/core/layout/LayoutTableRow.h View 3 chunks +13 lines, -13 lines 0 comments Download
M Source/core/layout/LayoutTableSection.h View 4 chunks +14 lines, -14 lines 0 comments Download
M Source/core/layout/LayoutTestHelper.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/LayoutTestHelper.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/LayoutText.h View 6 chunks +24 lines, -24 lines 0 comments Download
M Source/core/layout/LayoutText.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/LayoutTextCombine.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/layout/LayoutTextControl.h View 4 chunks +19 lines, -19 lines 0 comments Download
M Source/core/layout/LayoutTextControlMultiLine.h View 1 chunk +10 lines, -10 lines 0 comments Download
M Source/core/layout/LayoutTextControlSingleLine.h View 3 chunks +24 lines, -24 lines 0 comments Download
M Source/core/layout/LayoutTextFragment.h View 3 chunks +10 lines, -10 lines 0 comments Download
M Source/core/layout/LayoutTextTrackContainer.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/LayoutThemeAndroid.h View 1 chunk +8 lines, -8 lines 0 comments Download
M Source/core/layout/LayoutThemeDefault.h View 4 chunks +40 lines, -40 lines 0 comments Download
M Source/core/layout/LayoutThemeLinux.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/LayoutThemeMac.h View 2 chunks +42 lines, -42 lines 0 comments Download
M Source/core/layout/LayoutVTTCue.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/LayoutVideo.h View 2 chunks +16 lines, -16 lines 0 comments Download
M Source/core/layout/LayoutView.h View 5 chunks +22 lines, -22 lines 0 comments Download
M Source/core/layout/LayoutWordBreak.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/layout/MultiColumnFragmentainerGroupTest.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/layout/TableLayoutAlgorithmAuto.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/layout/TableLayoutAlgorithmFixed.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h View 3 chunks +6 lines, -6 lines 0 comments Download
M Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h View 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/layout/line/EllipsisBox.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/layout/line/InlineFlowBox.h View 6 chunks +16 lines, -16 lines 0 comments Download
M Source/core/layout/line/InlineTextBox.h View 6 chunks +21 lines, -21 lines 0 comments Download
M Source/core/layout/line/RootInlineBox.h View 5 chunks +15 lines, -15 lines 0 comments Download
M Source/core/layout/line/TrailingFloatsRootInlineBox.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/shapes/BoxShape.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/layout/shapes/PolygonShape.h View 2 chunks +6 lines, -6 lines 0 comments Download
M Source/core/layout/shapes/RasterShape.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/layout/shapes/RectangleShape.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGBlock.h View 1 chunk +13 lines, -13 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGContainer.h View 3 chunks +17 lines, -17 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGEllipse.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGForeignObject.h View 1 chunk +14 lines, -14 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGGradientStop.h View 1 chunk +9 lines, -9 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGHiddenContainer.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGImage.h View 1 chunk +15 lines, -15 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGInline.h View 1 chunk +16 lines, -16 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGInlineText.h View 1 chunk +11 lines, -11 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGModelObject.h View 1 chunk +15 lines, -15 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGPath.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGRect.h View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceClipper.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceContainer.h View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceFilter.h View 2 chunks +8 lines, -9 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceFilterPrimitive.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceGradient.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceLinearGradient.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceMarker.h View 2 chunks +8 lines, -8 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceMasker.h View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourcePaintServer.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/layout/svg/LayoutSVGResourcePattern.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceRadialGradient.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGRoot.h View 3 chunks +32 lines, -32 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGShape.h View 4 chunks +13 lines, -13 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGTSpan.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGText.h View 2 chunks +18 lines, -18 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGTextPath.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGTransformableContainer.h View 1 chunk +7 lines, -7 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGViewportContainer.h View 1 chunk +10 lines, -10 lines 0 comments Download
M Source/core/layout/svg/line/SVGInlineFlowBox.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/layout/svg/line/SVGInlineTextBox.h View 2 chunks +11 lines, -11 lines 0 comments Download
M Source/core/layout/svg/line/SVGRootInlineBox.h View 1 chunk +4 lines, -4 lines 0 comments Download

Messages

Total messages: 6 (2 generated)
tkent
yosin@, please review this trivial change.
5 years, 5 months ago (2015-07-13 04:24:10 UTC) #2
yosin_UTC9
rs lgtm
5 years, 5 months ago (2015-07-13 04:36:08 UTC) #3
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1231363003/1
5 years, 5 months ago (2015-07-13 04:36:23 UTC) #5
commit-bot: I haz the power
5 years, 5 months ago (2015-07-13 04:46:31 UTC) #6
Message was sent while issue was closed.
Committed patchset #1 (id:1) as
https://src.chromium.org/viewvc/blink?view=rev&revision=198748

Powered by Google App Engine
This is Rietveld 408576698