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

Unified Diff: Source/core/layout/svg/LayoutSVGInline.h

Issue 1162383003: C++11: Replace 0 with nullptr where applicable in layout code. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add one more file. Created 5 years, 6 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 | « Source/core/layout/svg/LayoutSVGImage.h ('k') | Source/core/layout/svg/LayoutSVGInlineText.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGInline.h
diff --git a/Source/core/layout/svg/LayoutSVGInline.h b/Source/core/layout/svg/LayoutSVGInline.h
index 821d4a99b7260725d63b74a1d9c524e18ae6609a..2bd5fcd20ceea6f02127dd55eac784c73885877d 100644
--- a/Source/core/layout/svg/LayoutSVGInline.h
+++ b/Source/core/layout/svg/LayoutSVGInline.h
@@ -44,8 +44,8 @@ public:
virtual FloatRect strokeBoundingBox() const override final;
virtual FloatRect paintInvalidationRectInLocalCoordinates() const override final;
- virtual LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutBoxModelObject* paintInvalidationContainer, const PaintInvalidationState* = 0) const override final;
- virtual void mapLocalToContainer(const LayoutBoxModelObject* paintInvalidationContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0, const PaintInvalidationState* = 0) const override final;
+ virtual LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutBoxModelObject* paintInvalidationContainer, const PaintInvalidationState* = nullptr) const override final;
+ virtual void mapLocalToContainer(const LayoutBoxModelObject* paintInvalidationContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = nullptr, const PaintInvalidationState* = nullptr) const override final;
virtual const LayoutObject* pushMappingToContainer(const LayoutBoxModelObject* ancestorToStopAt, LayoutGeometryMap&) const override final;
virtual void absoluteQuads(Vector<FloatQuad>&, bool* wasFixed) const override final;
@@ -55,7 +55,7 @@ private:
virtual void willBeDestroyed() override final;
virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override final;
- virtual void addChild(LayoutObject* child, LayoutObject* beforeChild = 0) override final;
+ virtual void addChild(LayoutObject* child, LayoutObject* beforeChild = nullptr) override final;
virtual void removeChild(LayoutObject*) override final;
};
« no previous file with comments | « Source/core/layout/svg/LayoutSVGImage.h ('k') | Source/core/layout/svg/LayoutSVGInlineText.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698