OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 } | 88 } |
89 | 89 |
90 | 90 |
91 PassRefPtrWillBeRawPtr<SVGPath> SVGPath::clone() const | 91 PassRefPtrWillBeRawPtr<SVGPath> SVGPath::clone() const |
92 { | 92 { |
93 return SVGPath::create(m_pathValue); | 93 return SVGPath::create(m_pathValue); |
94 } | 94 } |
95 | 95 |
96 SVGParsingError SVGPath::setValueAsString(const String& string) | 96 SVGParsingError SVGPath::setValueAsString(const String& string) |
97 { | 97 { |
98 SVGParsingError parseStatus = NoError; | 98 SVGParsingError parseStatus; |
99 RefPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create(); | 99 RefPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create(); |
100 if (!buildByteStreamFromString(string, *byteStream)) | 100 if (!buildByteStreamFromString(string, *byteStream)) |
101 parseStatus = ParsingAttributeFailedError; | 101 parseStatus = SVGStatus::ParsingFailed; |
102 m_pathValue = CSSPathValue::create(byteStream.release()); | 102 m_pathValue = CSSPathValue::create(byteStream.release()); |
103 return parseStatus; | 103 return parseStatus; |
104 } | 104 } |
105 | 105 |
106 PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGPath::cloneForAnimation(const String&
value) const | 106 PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGPath::cloneForAnimation(const String&
value) const |
107 { | 107 { |
108 return SVGPath::create(CSSPathValue::create(value)); | 108 return SVGPath::create(CSSPathValue::create(value)); |
109 } | 109 } |
110 | 110 |
111 void SVGPath::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement*) | 111 void SVGPath::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement*) |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 return -1; | 172 return -1; |
173 } | 173 } |
174 | 174 |
175 DEFINE_TRACE(SVGPath) | 175 DEFINE_TRACE(SVGPath) |
176 { | 176 { |
177 visitor->trace(m_pathValue); | 177 visitor->trace(m_pathValue); |
178 SVGPropertyBase::trace(visitor); | 178 SVGPropertyBase::trace(visitor); |
179 } | 179 } |
180 | 180 |
181 } | 181 } |
OLD | NEW |