| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2010 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 bool isValid(Document&) const; | 42 bool isValid(Document&) const; |
| 43 | 43 |
| 44 bool parseAttribute(const QualifiedName&, const AtomicString&); | 44 bool parseAttribute(const QualifiedName&, const AtomicString&); |
| 45 bool isKnownAttribute(const QualifiedName&); | 45 bool isKnownAttribute(const QualifiedName&); |
| 46 | 46 |
| 47 void addSupportedAttributes(HashSet<QualifiedName>&); | 47 void addSupportedAttributes(HashSet<QualifiedName>&); |
| 48 | 48 |
| 49 DECLARE_VIRTUAL_TRACE(); | 49 DECLARE_VIRTUAL_TRACE(); |
| 50 | 50 |
| 51 protected: | 51 protected: |
| 52 SVGTests(); | 52 explicit SVGTests(SVGElement* contextElement); |
| 53 | |
| 54 // FIXME: Oilpan: the construction of this mixin requires heap allocation, | |
| 55 // which cannot be safely done with Oilpan until the object that include | |
| 56 // this mixin have had its vptr initialized -- so as to be able to | |
| 57 // accurately trace the entire object should a GC strike while constructing | |
| 58 // the mixin. | |
| 59 // | |
| 60 // Try to come up with a more natural alternative and solution that doesn't | |
| 61 // require hoisting the constructor code for mixins into a separate method | |
| 62 // like initialize(). It makes construction of these heap-allocation mixins | |
| 63 // safe in the meantime, however. | |
| 64 // | |
| 65 void initialize(SVGElement*); | |
| 66 | 53 |
| 67 private: | 54 private: |
| 68 RefPtrWillBeMember<SVGStaticStringList> m_requiredFeatures; | 55 RefPtrWillBeMember<SVGStaticStringList> m_requiredFeatures; |
| 69 RefPtrWillBeMember<SVGStaticStringList> m_requiredExtensions; | 56 RefPtrWillBeMember<SVGStaticStringList> m_requiredExtensions; |
| 70 RefPtrWillBeMember<SVGStaticStringList> m_systemLanguage; | 57 RefPtrWillBeMember<SVGStaticStringList> m_systemLanguage; |
| 71 }; | 58 }; |
| 72 | 59 |
| 73 } // namespace blink | 60 } // namespace blink |
| 74 | 61 |
| 75 #endif // SVGTests_h | 62 #endif // SVGTests_h |
| OLD | NEW |