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

Unified Diff: Source/core/layout/svg/LayoutSVGShape.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/LayoutSVGRoot.h ('k') | Source/core/layout/svg/LayoutSVGText.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGShape.h
diff --git a/Source/core/layout/svg/LayoutSVGShape.h b/Source/core/layout/svg/LayoutSVGShape.h
index 2e10fb12cdae2ee082c9e6f3c34d10f4b39b5d41..2aa5d9cbf143b85dd305597737684ca0617b5acc 100644
--- a/Source/core/layout/svg/LayoutSVGShape.h
+++ b/Source/core/layout/svg/LayoutSVGShape.h
@@ -70,12 +70,12 @@ public:
AffineTransform nonScalingStrokeTransform() const;
virtual AffineTransform localTransform() const override final { return m_localTransform ? *m_localTransform : LayoutSVGModelObject::localTransform(); }
- virtual const Vector<MarkerPosition>* markerPositions() const { return 0; }
+ virtual const Vector<MarkerPosition>* markerPositions() const { return nullptr; }
float strokeWidth() const;
virtual ShapeGeometryCodePath geometryCodePath() const { return PathGeometry; }
- virtual const Vector<FloatPoint>* zeroLengthLineCaps() const { return 0; }
+ virtual const Vector<FloatPoint>* zeroLengthLineCaps() const { return nullptr; }
virtual FloatRect objectBoundingBox() const override final { return m_fillBoundingBox; }
« no previous file with comments | « Source/core/layout/svg/LayoutSVGRoot.h ('k') | Source/core/layout/svg/LayoutSVGText.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698