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, 2005, 2006, 2007, 2008 Apple, Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple, Inc. All rights reserved. |
5 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@webkit.org> | 5 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@webkit.org> |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 10 matching lines...) Expand all Loading... |
21 */ | 21 */ |
22 | 22 |
23 #include "config.h" | 23 #include "config.h" |
24 | 24 |
25 #include "XSLTProcessor.h" | 25 #include "XSLTProcessor.h" |
26 | 26 |
27 #include <libxslt/imports.h> | 27 #include <libxslt/imports.h> |
28 #include <libxslt/security.h> | 28 #include <libxslt/security.h> |
29 #include <libxslt/variables.h> | 29 #include <libxslt/variables.h> |
30 #include <libxslt/xsltutils.h> | 30 #include <libxslt/xsltutils.h> |
31 #include "Document.h" | |
32 #include "TransformSource.h" | |
33 #include "XSLStyleSheet.h" | 31 #include "XSLStyleSheet.h" |
34 #include "XSLTExtensions.h" | 32 #include "XSLTExtensions.h" |
35 #include "XSLTUnicodeSort.h" | 33 #include "XSLTUnicodeSort.h" |
| 34 #include "core/dom/Document.h" |
| 35 #include "core/dom/TransformSource.h" |
36 #include "core/editing/markup.h" | 36 #include "core/editing/markup.h" |
37 #include "core/loader/cache/CachedResourceLoader.h" | 37 #include "core/loader/cache/CachedResourceLoader.h" |
38 #include "core/page/Frame.h" | 38 #include "core/page/Frame.h" |
39 #include "core/page/Page.h" | 39 #include "core/page/Page.h" |
40 #include "core/page/PageConsole.h" | 40 #include "core/page/PageConsole.h" |
41 #include "core/page/SecurityOrigin.h" | 41 #include "core/page/SecurityOrigin.h" |
42 #include "core/platform/network/ResourceError.h" | 42 #include "core/platform/network/ResourceError.h" |
43 #include "core/platform/network/ResourceHandle.h" | 43 #include "core/platform/network/ResourceHandle.h" |
44 #include "core/platform/network/ResourceRequest.h" | 44 #include "core/platform/network/ResourceRequest.h" |
45 #include "core/platform/network/ResourceResponse.h" | 45 #include "core/platform/network/ResourceResponse.h" |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 | 343 |
344 sheet->method = origMethod; | 344 sheet->method = origMethod; |
345 setXSLTLoadCallBack(0, 0, 0); | 345 setXSLTLoadCallBack(0, 0, 0); |
346 xsltFreeStylesheet(sheet); | 346 xsltFreeStylesheet(sheet); |
347 m_stylesheet = 0; | 347 m_stylesheet = 0; |
348 | 348 |
349 return success; | 349 return success; |
350 } | 350 } |
351 | 351 |
352 } // namespace WebCore | 352 } // namespace WebCore |
OLD | NEW |