OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) |
4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) |
5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
6 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 6 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
7 | 7 |
8 This library is free software; you can redistribute it and/or | 8 This library is free software; you can redistribute it and/or |
9 modify it under the terms of the GNU Library General Public | 9 modify it under the terms of the GNU Library General Public |
10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
(...skipping 12 matching lines...) Expand all Loading... |
23 This class provides all functionality needed for loading images, style sheet
s and html | 23 This class provides all functionality needed for loading images, style sheet
s and html |
24 pages from the web. It has a memory cache for these objects. | 24 pages from the web. It has a memory cache for these objects. |
25 */ | 25 */ |
26 | 26 |
27 #include "config.h" | 27 #include "config.h" |
28 #include "core/fetch/XSLStyleSheetResource.h" | 28 #include "core/fetch/XSLStyleSheetResource.h" |
29 | 29 |
30 #include "RuntimeEnabledFeatures.h" | 30 #include "RuntimeEnabledFeatures.h" |
31 #include "core/fetch/ResourceClientWalker.h" | 31 #include "core/fetch/ResourceClientWalker.h" |
32 #include "core/fetch/StyleSheetResourceClient.h" | 32 #include "core/fetch/StyleSheetResourceClient.h" |
33 #include "core/html/parser/TextResourceDecoder.h" | 33 #include "core/fetch/TextResourceDecoder.h" |
34 #include "platform/SharedBuffer.h" | 34 #include "platform/SharedBuffer.h" |
35 #include "wtf/Vector.h" | 35 #include "wtf/Vector.h" |
36 | 36 |
37 namespace WebCore { | 37 namespace WebCore { |
38 | 38 |
39 XSLStyleSheetResource::XSLStyleSheetResource(const ResourceRequest& resourceRequ
est) | 39 XSLStyleSheetResource::XSLStyleSheetResource(const ResourceRequest& resourceRequ
est) |
40 : StyleSheetResource(resourceRequest, XSLStyleSheet) | 40 : StyleSheetResource(resourceRequest, XSLStyleSheet) |
41 , m_decoder(TextResourceDecoder::create("text/xsl")) | 41 , m_decoder(TextResourceDecoder::create("text/xsl")) |
42 { | 42 { |
43 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); | 43 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); |
(...skipping 28 matching lines...) Expand all Loading... |
72 m_sheet = m_decoder->decode(m_data->data(), encodedSize()); | 72 m_sheet = m_decoder->decode(m_data->data(), encodedSize()); |
73 m_sheet = m_sheet + m_decoder->flush(); | 73 m_sheet = m_sheet + m_decoder->flush(); |
74 } | 74 } |
75 | 75 |
76 ResourceClientWalker<StyleSheetResourceClient> w(m_clients); | 76 ResourceClientWalker<StyleSheetResourceClient> w(m_clients); |
77 while (StyleSheetResourceClient* c = w.next()) | 77 while (StyleSheetResourceClient* c = w.next()) |
78 c->setXSLStyleSheet(m_resourceRequest.url(), m_response.url(), m_sheet); | 78 c->setXSLStyleSheet(m_resourceRequest.url(), m_response.url(), m_sheet); |
79 } | 79 } |
80 | 80 |
81 } // namespace WebCore | 81 } // namespace WebCore |
OLD | NEW |