| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = s
tyleSheet; } | 47 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = s
tyleSheet; } |
| 48 | 48 |
| 49 bool isLoading(); | 49 bool isLoading(); |
| 50 void loadSheet(); | 50 void loadSheet(); |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 XSLImportRule(XSLStyleSheet* parentSheet, const String& href); | 53 XSLImportRule(XSLStyleSheet* parentSheet, const String& href); |
| 54 | 54 |
| 55 void setXSLStyleSheet(const String& href, const KURL& baseURL, const String&
sheet); | 55 void setXSLStyleSheet(const String& href, const KURL& baseURL, const String&
sheet); |
| 56 | 56 |
| 57 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet; | 57 Member<XSLStyleSheet> m_parentStyleSheet; |
| 58 String m_strHref; | 58 String m_strHref; |
| 59 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet; | 59 Member<XSLStyleSheet> m_styleSheet; |
| 60 bool m_loading; | 60 bool m_loading; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace blink | 63 } // namespace blink |
| 64 | 64 |
| 65 #endif // XSLImportRule_h | 65 #endif // XSLImportRule_h |
| OLD | NEW |