| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the XSL implementation. | 2 * This file is part of the XSL implementation. |
| 3 * | 3 * |
| 4 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 class XSLImportRule final : public NoBaseWillBeGarbageCollectedFinalized<XSLImpo
rtRule> { | 33 class XSLImportRule final : public NoBaseWillBeGarbageCollectedFinalized<XSLImpo
rtRule> { |
| 34 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; | 34 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
| 35 public: | 35 public: |
| 36 static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentShe
et, const String& href) | 36 static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentShe
et, const String& href) |
| 37 { | 37 { |
| 38 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); | 38 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); |
| 39 return adoptPtrWillBeNoop(new XSLImportRule(parentSheet, href)); | 39 return adoptPtrWillBeNoop(new XSLImportRule(parentSheet, href)); |
| 40 } | 40 } |
| 41 | 41 |
| 42 virtual ~XSLImportRule(); | 42 virtual ~XSLImportRule(); |
| 43 virtual void trace(Visitor*); | 43 DECLARE_VIRTUAL_TRACE(); |
| 44 | 44 |
| 45 const String& href() const { return m_strHref; } | 45 const String& href() const { return m_strHref; } |
| 46 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); } | 46 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); } |
| 47 | 47 |
| 48 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; } | 48 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; } |
| 49 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = s
tyleSheet; } | 49 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = s
tyleSheet; } |
| 50 | 50 |
| 51 bool isLoading(); | 51 bool isLoading(); |
| 52 void loadSheet(); | 52 void loadSheet(); |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 XSLImportRule(XSLStyleSheet* parentSheet, const String& href); | 55 XSLImportRule(XSLStyleSheet* parentSheet, const String& href); |
| 56 | 56 |
| 57 void setXSLStyleSheet(const String& href, const KURL& baseURL, const String&
sheet); | 57 void setXSLStyleSheet(const String& href, const KURL& baseURL, const String&
sheet); |
| 58 | 58 |
| 59 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet; | 59 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet; |
| 60 String m_strHref; | 60 String m_strHref; |
| 61 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet; | 61 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet; |
| 62 bool m_loading; | 62 bool m_loading; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace blink | 65 } // namespace blink |
| 66 | 66 |
| 67 #endif // XSLImportRule_h | 67 #endif // XSLImportRule_h |
| OLD | NEW |