| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 m_ownerList = ownerList; | 146 m_ownerList = ownerList; |
| 147 } | 147 } |
| 148 | 148 |
| 149 void setContextElement(SVGElement* contextElement) | 149 void setContextElement(SVGElement* contextElement) |
| 150 { | 150 { |
| 151 m_contextElement = contextElement; | 151 m_contextElement = contextElement; |
| 152 } | 152 } |
| 153 | 153 |
| 154 static PassRefPtrWillBeRawPtr<SVGPathSeg> create() { ASSERT_NOT_REACHED(); r
eturn nullptr; } | 154 static PassRefPtrWillBeRawPtr<SVGPathSeg> create() { ASSERT_NOT_REACHED(); r
eturn nullptr; } |
| 155 PassRefPtrWillBeRawPtr<SVGPathSeg> clone() { ASSERT_NOT_REACHED(); return nu
llptr; } | 155 virtual PassRefPtrWillBeRawPtr<SVGPathSeg> clone() = 0; |
| 156 | 156 |
| 157 DECLARE_VIRTUAL_TRACE(); | 157 DECLARE_VIRTUAL_TRACE(); |
| 158 | 158 |
| 159 protected: | 159 protected: |
| 160 void commitChange(); | 160 void commitChange(); |
| 161 | 161 |
| 162 private: | 162 private: |
| 163 RawPtrWillBeMember<SVGPropertyBase> m_ownerList; | 163 RawPtrWillBeMember<SVGPropertyBase> m_ownerList; |
| 164 RawPtrWillBeMember<SVGElement> m_contextElement; | 164 RawPtrWillBeMember<SVGElement> m_contextElement; |
| 165 }; | 165 }; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 189 } | 189 } |
| 190 | 190 |
| 191 private: | 191 private: |
| 192 float m_x; | 192 float m_x; |
| 193 float m_y; | 193 float m_y; |
| 194 }; | 194 }; |
| 195 | 195 |
| 196 } // namespace blink | 196 } // namespace blink |
| 197 | 197 |
| 198 #endif // SVGPathSeg_h | 198 #endif // SVGPathSeg_h |
| OLD | NEW |