| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 SVGElement* viewTarget() const; | 51 SVGElement* viewTarget() const; |
| 52 String viewBoxString() const; | 52 String viewBoxString() const; |
| 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*); | |
| 62 | 61 |
| 63 SVGSVGElement* contextElement() { return m_contextElement.get(); } | 62 SVGSVGElement* contextElement() { return m_contextElement.get(); } |
| 64 | 63 |
| 65 private: | 64 private: |
| 66 explicit SVGViewSpec(SVGSVGElement*); | 65 explicit SVGViewSpec(SVGSVGElement*); |
| 67 | 66 |
| 68 template<typename CharType> | 67 template<typename CharType> |
| 69 bool parseViewSpecInternal(const CharType* ptr, const CharType* end); | 68 bool parseViewSpecInternal(const CharType* ptr, const CharType* end); |
| 70 | 69 |
| 71 RawPtrWillBeWeakMember<SVGSVGElement> m_contextElement; | 70 RawPtrWillBeMember<SVGSVGElement> m_contextElement; |
| 72 RefPtr<SVGAnimatedTransformList> m_transform; | 71 RefPtr<SVGAnimatedTransformList> m_transform; |
| 73 String m_viewTargetString; | 72 String m_viewTargetString; |
| 74 }; | 73 }; |
| 75 | 74 |
| 76 } // namespace WebCore | 75 } // namespace WebCore |
| 77 | 76 |
| 78 #endif | 77 #endif |
| OLD | NEW |