Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: Source/core/svg/SVGViewSpec.h

Issue 315893002: SVGViewSpec wrapper should keep its context SVGSVGElement wrapper alive. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaseline Created 6 years, 6 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « LayoutTests/svg/dom/SVGViewSpec-invalid-ref-crash-expected.txt ('k') | Source/core/svg/SVGViewSpec.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698