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/SVGPathBuilder.h

Issue 1013753003: Drop SVGPathBuilder::m_current (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 | « no previous file | Source/core/svg/SVGPathBuilder.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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 // Only used in UnalteredParsing mode. 48 // Only used in UnalteredParsing mode.
49 virtual void lineToHorizontal(float, PathCoordinateMode) override { ASSERT_N OT_REACHED(); } 49 virtual void lineToHorizontal(float, PathCoordinateMode) override { ASSERT_N OT_REACHED(); }
50 virtual void lineToVertical(float, PathCoordinateMode) override { ASSERT_NOT _REACHED(); } 50 virtual void lineToVertical(float, PathCoordinateMode) override { ASSERT_NOT _REACHED(); }
51 virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&, PathCo ordinateMode) override { ASSERT_NOT_REACHED(); } 51 virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&, PathCo ordinateMode) override { ASSERT_NOT_REACHED(); }
52 virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&, PathCoor dinateMode) override { ASSERT_NOT_REACHED(); } 52 virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&, PathCoor dinateMode) override { ASSERT_NOT_REACHED(); }
53 virtual void curveToQuadraticSmooth(const FloatPoint&, PathCoordinateMode) o verride { ASSERT_NOT_REACHED(); } 53 virtual void curveToQuadraticSmooth(const FloatPoint&, PathCoordinateMode) o verride { ASSERT_NOT_REACHED(); }
54 virtual void arcTo(float, float, float, bool, bool, const FloatPoint&, PathC oordinateMode) override { ASSERT_NOT_REACHED(); } 54 virtual void arcTo(float, float, float, bool, bool, const FloatPoint&, PathC oordinateMode) override { ASSERT_NOT_REACHED(); }
55 55
56 Path& m_path; 56 Path& m_path;
57 FloatPoint m_current;
58 }; 57 };
59 58
60 } // namespace blink 59 } // namespace blink
61 60
62 #endif // SVGPathBuilder_h 61 #endif // SVGPathBuilder_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/svg/SVGPathBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698