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 25 matching lines...) Expand all Loading... |
36 #include "core/xml/XSLStyleSheet.h" | 36 #include "core/xml/XSLStyleSheet.h" |
37 #include "core/xml/XSLTExtensions.h" | 37 #include "core/xml/XSLTExtensions.h" |
38 #include "core/xml/XSLTUnicodeSort.h" | 38 #include "core/xml/XSLTUnicodeSort.h" |
39 #include "core/xml/parser/XMLDocumentParser.h" | 39 #include "core/xml/parser/XMLDocumentParser.h" |
40 #include "platform/SharedBuffer.h" | 40 #include "platform/SharedBuffer.h" |
41 #include "platform/network/ResourceError.h" | 41 #include "platform/network/ResourceError.h" |
42 #include "platform/network/ResourceRequest.h" | 42 #include "platform/network/ResourceRequest.h" |
43 #include "platform/network/ResourceResponse.h" | 43 #include "platform/network/ResourceResponse.h" |
44 #include "platform/weborigin/SecurityOrigin.h" | 44 #include "platform/weborigin/SecurityOrigin.h" |
45 #include "wtf/Assertions.h" | 45 #include "wtf/Assertions.h" |
46 #include "wtf/Partitions.h" | 46 #include "wtf/allocator/Partitions.h" |
47 #include "wtf/text/CString.h" | 47 #include "wtf/text/CString.h" |
48 #include "wtf/text/StringBuffer.h" | 48 #include "wtf/text/StringBuffer.h" |
49 #include "wtf/text/UTF8.h" | 49 #include "wtf/text/UTF8.h" |
50 #include <libxslt/imports.h> | 50 #include <libxslt/imports.h> |
51 #include <libxslt/security.h> | 51 #include <libxslt/security.h> |
52 #include <libxslt/variables.h> | 52 #include <libxslt/variables.h> |
53 #include <libxslt/xsltutils.h> | 53 #include <libxslt/xsltutils.h> |
54 | 54 |
55 namespace blink { | 55 namespace blink { |
56 | 56 |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 | 353 |
354 sheet->method = origMethod; | 354 sheet->method = origMethod; |
355 setXSLTLoadCallBack(0, 0, 0); | 355 setXSLTLoadCallBack(0, 0, 0); |
356 xsltFreeStylesheet(sheet); | 356 xsltFreeStylesheet(sheet); |
357 m_stylesheet = nullptr; | 357 m_stylesheet = nullptr; |
358 | 358 |
359 return success; | 359 return success; |
360 } | 360 } |
361 | 361 |
362 } // namespace blink | 362 } // namespace blink |
OLD | NEW |