New issue
Advanced search Search tips

Issue 710611 link

Starred by 1 user

Issue metadata

Status: Assigned
Owner:
Cc:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 2
Type: Bug

Blocking:
issue 675877



Sign in to add a comment

Make size() method capitalization consistent with other geometry methods

Project Member Reported by szager@chromium.org, Apr 11 2017

Issue description

A number of classes have a size() method which did not get capitalized, but they have other related methods which *did* get capitalized.  This resulted in some pretty ridiculous code like:

int height = GetBox().size().Height();

There's a *ton* of this in the core/layout/ and core/paint/ directories now.

The justification for not capitalizing "size" was to avoid making WTF classes diverge from their STL counterparts (e.g., Vector::size()), but I would argue that in all other non-web-exposed cases, "Size" should be capitalized for consistency.

Most (but not all) of the methods listed here should probably be changed:

https://cs.chromium.org/search/?q=package:%5Echromium$+file:%5Esrc/third_party/WebKit/.*%5C.h$+%5Cssize%5C(%5C)+-file:src/third_party/WebKit/Source/platform/wtf&m=100&det=matsel&sort=1&type=cs


... with special emphasis on platform/geometry/*Rect.h, which accounts for a whole lot of the goofy usage.
 

Comment 1 by dcheng@chromium.org, Apr 11 2017

Owner: dcheng@chromium.org
Status: Assigned (was: Untriaged)
I'll go ahead and do this for the geometry stuff, it's fairly easy to automate.
Project Member

Comment 2 by bugdroid1@chromium.org, Apr 12 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/49c67797cd9be6221b2d36bc35700c36dd00839d

commit 49c67797cd9be6221b2d36bc35700c36dd00839d
Author: Daniel Cheng <dcheng@chromium.org>
Date: Wed Apr 12 09:01:31 2017

Rename size() methods returning {Double,Float,Int,Layout}Rect to Size()

These aren't STL-like methods, so they shouldn't have STL-like naming.

BUG=710611
R=kojii@chromium.org
TBR=esprehn@chromium.org

Change-Id: Ie5e8ebbb33ffdcbb4de9899f339915d8d56e7096

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2

Change-Id: Ie5e8ebbb33ffdcbb4de9899f339915d8d56e7096
Reviewed-on: https://chromium-review.googlesource.com/475206
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Koji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#463967}
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/dom/ContainerNode.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/dom/IntersectionObservation.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/dom/ResizeObservation.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/dom/ResizeObserverEntry.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/editing/CaretDisplayItemClientTest.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/editing/VisibleUnits.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/editing/iterators/TextIterator.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/frame/FrameView.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/frame/ImageBitmap.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/frame/RootFrameViewportTest.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/frame/VisualViewport.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/html/shadow/SliderThumbElement.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/html/shadow/SpinButtonElement.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/html/track/TextTrackContainer.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/FloatingObjects.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutBlock.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutBox.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutBox.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutButton.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutDeprecatedFlexibleBox.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutFlowThread.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutHTMLCanvas.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutInline.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutListBox.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutListMarker.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutMedia.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutObject.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutPart.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutReplaced.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutSlider.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutSliderContainer.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutTable.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutTextControl.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutTextControlSingleLine.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutVTTCue.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/LayoutView.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/ScrollAlignment.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/ScrollAnchorTest.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/api/LayoutBoxItem.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/api/LineLayoutBox.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMappingTest.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/compositing/CompositingLayerAssigner.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/line/InlineBox.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/ng/ng_block_node.cc
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/shapes/Shape.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePattern.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/layout/svg/LayoutSVGRoot.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/page/CreateWindow.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/page/DragController.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/page/TouchAdjustment.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/page/scrolling/RootScrollerController.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/page/scrolling/SnapCoordinator.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/BackgroundImageGeometry.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/BoxClipper.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/BoxPaintInvalidator.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/BoxPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/BoxReflectionUtils.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/FieldsetPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/FileUploadControlPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/FramePainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/HTMLCanvasPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/ImagePainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/InlineFlowBoxPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/LayerClipRecorder.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/ListMarkerPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/NinePieceImageGrid.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/NinePieceImageGridTest.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/PaintInvalidationCapableScrollableArea.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/PaintLayer.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/PaintLayerClipperTest.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/PaintPropertyTreeUpdateTests.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/PartPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/ReplacedPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/SVGRootPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/ScrollableAreaPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/TableCellPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/TablePainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/TableSectionPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/ThemePainterMac.mm
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/VideoPainter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/paint/ViewPaintInvalidator.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/style/BasicShapes.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/style/ComputedStyle.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/svg/SVGImageElement.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/svg/SVGLengthContext.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/core/testing/Internals.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/FrameViewBase.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/geometry/DoubleRect.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/geometry/DoubleRect.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/geometry/FloatRect.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/geometry/FloatRect.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/geometry/IntRect.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/geometry/IntRect.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/geometry/LayoutRect.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/graphics/BitmapImage.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/graphics/CrossfadeGeneratedImage.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/graphics/PaintGeneratedImage.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/graphics/filters/Filter.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/graphics/paint/CompositingDisplayItem.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/mac/ThemeMac.mm
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/scroll/Scrollbar.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/scroll/ScrollbarThemeClient.h
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/platform/scroll/ScrollbarThemeMac.mm
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/InspectorOverlay.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/LinkHighlightImpl.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/PageOverlay.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/RotationViewportAnchor.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/WebFrameContentDumper.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/WebViewImpl.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/tests/VisualViewportTest.cpp
[modify] https://crrev.com/49c67797cd9be6221b2d36bc35700c36dd00839d/third_party/WebKit/Source/web/tests/WebFrameTest.cpp

Project Member

Comment 3 by bugdroid1@chromium.org, Apr 13 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/07955d420101ad98b446a9b1b3d26426627803cf

commit 07955d420101ad98b446a9b1b3d26426627803cf
Author: Daniel Cheng <dcheng@chromium.org>
Date: Thu Apr 13 03:37:30 2017

Rename more size() methods returning Size-types to Size()

These aren't STL-like methods, so they shouldn't have STL-like naming.

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel
TBR=jochen@chromium.org

Bug: 710611
Change-Id: I85167fed8b260eebaacf6c4d7c4a7c0d17979bef
Reviewed-on: https://chromium-review.googlesource.com/476021
Reviewed-by: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Philip Rogers <pdr@chromium.org>
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#464279}
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/chrome/renderer/chrome_render_frame_observer.cc
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/components/printing/renderer/print_web_view_helper.cc
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/content/renderer/render_frame_impl_browsertest.cc
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/content/renderer/render_widget_browsertest.cc
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/content/renderer/render_widget_fullscreen_pepper.cc
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/content/shell/test_runner/pixel_dump.cc
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/content/shell/test_runner/web_view_test_client.cc
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/dom/Element.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/dom/ViewportDescription.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/frame/FrameView.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/frame/ImageBitmap.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/frame/ImageBitmap.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/frame/LocalFrameTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/frame/VisualViewport.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/html/ImageData.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/html/ImageDocument.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/input/EventHandler.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/ImageQualityController.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/LayoutInline.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/LayoutText.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/line/EllipsisBox.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/line/InlineBox.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/line/InlineBox.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/line/InlineTextBox.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/shapes/Shape.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/loader/resource/ImageResourceContent.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/page/DragController.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/paint/BackgroundImageGeometry.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/paint/BoxPainter.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/paint/EllipsisBoxPainter.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/paint/ScrollableAreaPainter.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/style/FillLayer.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/svg/graphics/SVGImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/svg/graphics/SVGImageForContainer.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/svg/graphics/SVGImageForContainer.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/core/testing/Internals.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/modules/shapedetection/ShapeDetector.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/DragImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/DragImageTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/exported/WebImage.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/BitmapImage.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/BitmapImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/CrossfadeGeneratedImage.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/CrossfadeGeneratedImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/DeferredImageDecoderTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/GeneratedImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/Image.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/Image.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/ImageBuffer.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/MailboxTextureHolder.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/PlaceholderImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/SkiaTextureHolder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/SkiaTextureHolder.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/TextureHolder.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/UnacceleratedStaticBitmapImage.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/UnacceleratedStaticBitmapImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/gpu/ImageLayerBridge.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/graphics/test/MockImageDecoder.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/ImageDecoderTestHelpers.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageDecoderTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoderTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/ChromeClientImpl.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/FullscreenController.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/InspectorOverlay.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/PageOverlay.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/RotationViewportAnchor.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/WebImageDecoder.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/WebViewFrameWidget.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/WebViewImpl.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/WebViewImpl.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/tests/BrowserControlsTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/tests/VisualViewportTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/Source/web/tests/WebImageTest.cpp
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/public/platform/WebExternalBitmap.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/public/platform/WebImage.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/public/platform/WebScrollbar.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/public/web/WebImageDecoder.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/public/web/WebView.h
[modify] https://crrev.com/07955d420101ad98b446a9b1b3d26426627803cf/third_party/WebKit/public/web/WebWidget.h

Sign in to add a comment