| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #if ENABLE(SVG_FONTS) | 6 #if ENABLE(SVG_FONTS) |
| 7 #include "core/svg/SVGRemoteFontFaceSource.h" | 7 #include "core/svg/SVGRemoteFontFaceSource.h" |
| 8 | 8 |
| 9 #include "SVGNames.h" | 9 #include "core/SVGNames.h" |
| 10 #include "core/css/FontLoader.h" | 10 #include "core/css/FontLoader.h" |
| 11 #include "core/dom/ElementTraversal.h" | 11 #include "core/dom/ElementTraversal.h" |
| 12 #include "core/svg/SVGFontData.h" | 12 #include "core/svg/SVGFontData.h" |
| 13 #include "core/svg/SVGFontElement.h" | 13 #include "core/svg/SVGFontElement.h" |
| 14 #include "core/svg/SVGFontFaceElement.h" | 14 #include "core/svg/SVGFontFaceElement.h" |
| 15 #include "platform/fonts/FontDescription.h" | 15 #include "platform/fonts/FontDescription.h" |
| 16 #include "platform/fonts/SimpleFontData.h" | 16 #include "platform/fonts/SimpleFontData.h" |
| 17 | 17 |
| 18 namespace WebCore { | 18 namespace WebCore { |
| 19 | 19 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 void SVGRemoteFontFaceSource::trace(Visitor* visitor) | 66 void SVGRemoteFontFaceSource::trace(Visitor* visitor) |
| 67 { | 67 { |
| 68 visitor->trace(m_externalSVGFontElement); | 68 visitor->trace(m_externalSVGFontElement); |
| 69 RemoteFontFaceSource::trace(visitor); | 69 RemoteFontFaceSource::trace(visitor); |
| 70 } | 70 } |
| 71 | 71 |
| 72 } // namespace WebCore | 72 } // namespace WebCore |
| 73 | 73 |
| 74 #endif // ENABLE(SVG_FONTS) | 74 #endif // ENABLE(SVG_FONTS) |
| OLD | NEW |