| 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 "CachedResourceLoader.h" | |
| 32 #include "Document.h" | 31 #include "Document.h" |
| 33 #include "Frame.h" | 32 #include "Frame.h" |
| 34 #include "Page.h" | 33 #include "Page.h" |
| 35 #include "PageConsole.h" | 34 #include "PageConsole.h" |
| 36 #include "SecurityOrigin.h" | 35 #include "SecurityOrigin.h" |
| 37 #include "TransformSource.h" | 36 #include "TransformSource.h" |
| 38 #include "XMLDocumentParser.h" | 37 #include "XMLDocumentParser.h" |
| 39 #include "XSLStyleSheet.h" | 38 #include "XSLStyleSheet.h" |
| 40 #include "XSLTExtensions.h" | 39 #include "XSLTExtensions.h" |
| 41 #include "XSLTUnicodeSort.h" | 40 #include "XSLTUnicodeSort.h" |
| 41 #include "core/loader/cache/CachedResourceLoader.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" |
| 46 #include "markup.h" | 46 #include "markup.h" |
| 47 #include <wtf/Assertions.h> | 47 #include <wtf/Assertions.h> |
| 48 #include <wtf/text/CString.h> | 48 #include <wtf/text/CString.h> |
| 49 #include <wtf/text/StringBuffer.h> | 49 #include <wtf/text/StringBuffer.h> |
| 50 #include <wtf/unicode/UTF8.h> | 50 #include <wtf/unicode/UTF8.h> |
| 51 #include <wtf/Vector.h> | 51 #include <wtf/Vector.h> |
| (...skipping 291 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 |