| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 3 * Copyright (C) 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #include "config.h" | 21 #include "config.h" |
| 22 | 22 |
| 23 #if ENABLE(SVG_FONTS) | 23 #if ENABLE(SVG_FONTS) |
| 24 #include "SVGFontFaceUriElement.h" | 24 #include "SVGFontFaceUriElement.h" |
| 25 | 25 |
| 26 #include "Attribute.h" | 26 #include "Attribute.h" |
| 27 #include "CSSFontFaceSrcValue.h" | 27 #include "CSSFontFaceSrcValue.h" |
| 28 #include "CachedFont.h" | |
| 29 #include "CachedResourceLoader.h" | |
| 30 #include "CachedResourceRequest.h" | |
| 31 #include "Document.h" | 28 #include "Document.h" |
| 32 #include "SVGFontFaceElement.h" | 29 #include "SVGFontFaceElement.h" |
| 33 #include "SVGNames.h" | 30 #include "SVGNames.h" |
| 34 #include "XLinkNames.h" | 31 #include "XLinkNames.h" |
| 32 #include "core/loader/cache/CachedFont.h" |
| 33 #include "core/loader/cache/CachedResourceLoader.h" |
| 34 #include "core/loader/cache/CachedResourceRequest.h" |
| 35 | 35 |
| 36 namespace WebCore { | 36 namespace WebCore { |
| 37 | 37 |
| 38 using namespace SVGNames; | 38 using namespace SVGNames; |
| 39 | 39 |
| 40 inline SVGFontFaceUriElement::SVGFontFaceUriElement(const QualifiedName& tagName
, Document* document) | 40 inline SVGFontFaceUriElement::SVGFontFaceUriElement(const QualifiedName& tagName
, Document* document) |
| 41 : SVGElement(tagName, document) | 41 : SVGElement(tagName, document) |
| 42 { | 42 { |
| 43 ASSERT(hasTagName(font_face_uriTag)); | 43 ASSERT(hasTagName(font_face_uriTag)); |
| 44 ScriptWrappable::init(this); | 44 ScriptWrappable::init(this); |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 m_cachedFont->addClient(this); | 104 m_cachedFont->addClient(this); |
| 105 m_cachedFont->beginLoadIfNeeded(cachedResourceLoader); | 105 m_cachedFont->beginLoadIfNeeded(cachedResourceLoader); |
| 106 } | 106 } |
| 107 } else | 107 } else |
| 108 m_cachedFont = 0; | 108 m_cachedFont = 0; |
| 109 } | 109 } |
| 110 | 110 |
| 111 } | 111 } |
| 112 | 112 |
| 113 #endif // ENABLE(SVG_FONTS) | 113 #endif // ENABLE(SVG_FONTS) |
| OLD | NEW |