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

Side by Side Diff: Source/core/svg/SVGPathSegListBuilder.h

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGGraphicsElement.cpp ('k') | Source/core/svg/SVGPathSegListBuilder.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2002, 2003 The Karbon Developers 2 * Copyright (C) 2002, 2003 The Karbon Developers
3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org>
4 * Copyright (C) 2006, 2007 Rob Buis <buis@kde.org> 4 * Copyright (C) 2006, 2007 Rob Buis <buis@kde.org>
5 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. 5 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 28 matching lines...) Expand all
39 void setCurrentSVGPathElement(SVGPathElement* pathElement) { m_pathElement = pathElement; } 39 void setCurrentSVGPathElement(SVGPathElement* pathElement) { m_pathElement = pathElement; }
40 void setCurrentSVGPathSegList(PassRefPtr<SVGPathSegList> pathSegList) { m_pa thSegList = pathSegList; } 40 void setCurrentSVGPathSegList(PassRefPtr<SVGPathSegList> pathSegList) { m_pa thSegList = pathSegList; }
41 void setCurrentSVGPathSegRole(SVGPathSegRole pathSegRole) { m_pathSegRole = pathSegRole; } 41 void setCurrentSVGPathSegRole(SVGPathSegRole pathSegRole) { m_pathSegRole = pathSegRole; }
42 42
43 private: 43 private:
44 virtual void incrementPathSegmentCount() OVERRIDE { } 44 virtual void incrementPathSegmentCount() OVERRIDE { }
45 virtual bool continueConsuming() OVERRIDE { return true; } 45 virtual bool continueConsuming() OVERRIDE { return true; }
46 virtual void cleanup() OVERRIDE 46 virtual void cleanup() OVERRIDE
47 { 47 {
48 m_pathElement = 0; 48 m_pathElement = 0;
49 m_pathSegList = 0; 49 m_pathSegList = nullptr;
50 m_pathSegRole = PathSegUndefinedRole; 50 m_pathSegRole = PathSegUndefinedRole;
51 } 51 }
52 52
53 // Used in UnalteredParsing/NormalizedParsing modes. 53 // Used in UnalteredParsing/NormalizedParsing modes.
54 virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode) OVER RIDE; 54 virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode) OVER RIDE;
55 virtual void lineTo(const FloatPoint&, PathCoordinateMode) OVERRIDE; 55 virtual void lineTo(const FloatPoint&, PathCoordinateMode) OVERRIDE;
56 virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatP oint&, PathCoordinateMode) OVERRIDE; 56 virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatP oint&, PathCoordinateMode) OVERRIDE;
57 virtual void closePath() OVERRIDE; 57 virtual void closePath() OVERRIDE;
58 58
59 // Only used in UnalteredParsing mode. 59 // Only used in UnalteredParsing mode.
60 virtual void lineToHorizontal(float, PathCoordinateMode) OVERRIDE; 60 virtual void lineToHorizontal(float, PathCoordinateMode) OVERRIDE;
61 virtual void lineToVertical(float, PathCoordinateMode) OVERRIDE; 61 virtual void lineToVertical(float, PathCoordinateMode) OVERRIDE;
62 virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&, PathCo ordinateMode) OVERRIDE; 62 virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&, PathCo ordinateMode) OVERRIDE;
63 virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&, PathCoor dinateMode) OVERRIDE; 63 virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&, PathCoor dinateMode) OVERRIDE;
64 virtual void curveToQuadraticSmooth(const FloatPoint&, PathCoordinateMode) O VERRIDE; 64 virtual void curveToQuadraticSmooth(const FloatPoint&, PathCoordinateMode) O VERRIDE;
65 virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, c onst FloatPoint&, PathCoordinateMode) OVERRIDE; 65 virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, c onst FloatPoint&, PathCoordinateMode) OVERRIDE;
66 66
67 SVGPathElement* m_pathElement; 67 SVGPathElement* m_pathElement;
68 RefPtr<SVGPathSegList> m_pathSegList; 68 RefPtr<SVGPathSegList> m_pathSegList;
69 SVGPathSegRole m_pathSegRole; 69 SVGPathSegRole m_pathSegRole;
70 }; 70 };
71 71
72 } // namespace WebCore 72 } // namespace WebCore
73 73
74 #endif // SVGPathSegListBuilder_h 74 #endif // SVGPathSegListBuilder_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGGraphicsElement.cpp ('k') | Source/core/svg/SVGPathSegListBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698