| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 String preserveAspectRatioString() const; | 53 String preserveAspectRatioString() const; |
| 54 String transformString() const; | 54 String transformString() const; |
| 55 String viewTargetString() const { return m_viewTargetString; } | 55 String viewTargetString() const { return m_viewTargetString; } |
| 56 // override SVGZoomAndPan.setZoomAndPan so can throw exception on write | 56 // override SVGZoomAndPan.setZoomAndPan so can throw exception on write |
| 57 void setZoomAndPan(unsigned short value) { } // read only | 57 void setZoomAndPan(unsigned short value) { } // read only |
| 58 void setZoomAndPan(unsigned short value, ExceptionState&); | 58 void setZoomAndPan(unsigned short value, ExceptionState&); |
| 59 | 59 |
| 60 void trace(Visitor*); | 60 void trace(Visitor*); |
| 61 void clearWeakMembers(Visitor*); | 61 void clearWeakMembers(Visitor*); |
| 62 | 62 |
| 63 SVGSVGElement* contextElement() { return m_contextElement.get(); } |
| 64 |
| 63 private: | 65 private: |
| 64 explicit SVGViewSpec(SVGSVGElement*); | 66 explicit SVGViewSpec(SVGSVGElement*); |
| 65 | 67 |
| 66 template<typename CharType> | 68 template<typename CharType> |
| 67 bool parseViewSpecInternal(const CharType* ptr, const CharType* end); | 69 bool parseViewSpecInternal(const CharType* ptr, const CharType* end); |
| 68 | 70 |
| 69 RawPtrWillBeWeakMember<SVGSVGElement> m_contextElement; | 71 RawPtrWillBeWeakMember<SVGSVGElement> m_contextElement; |
| 70 RefPtr<SVGAnimatedTransformList> m_transform; | 72 RefPtr<SVGAnimatedTransformList> m_transform; |
| 71 String m_viewTargetString; | 73 String m_viewTargetString; |
| 72 }; | 74 }; |
| 73 | 75 |
| 74 } // namespace WebCore | 76 } // namespace WebCore |
| 75 | 77 |
| 76 #endif | 78 #endif |
| OLD | NEW |