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 24 matching lines...) Expand all Loading... |
35 #include "core/xml/XSLStyleSheet.h" | 35 #include "core/xml/XSLStyleSheet.h" |
36 #include "core/xml/XSLTExtensions.h" | 36 #include "core/xml/XSLTExtensions.h" |
37 #include "core/xml/XSLTUnicodeSort.h" | 37 #include "core/xml/XSLTUnicodeSort.h" |
38 #include "core/xml/parser/XMLDocumentParser.h" | 38 #include "core/xml/parser/XMLDocumentParser.h" |
39 #include "platform/SharedBuffer.h" | 39 #include "platform/SharedBuffer.h" |
40 #include "platform/network/ResourceError.h" | 40 #include "platform/network/ResourceError.h" |
41 #include "platform/network/ResourceRequest.h" | 41 #include "platform/network/ResourceRequest.h" |
42 #include "platform/network/ResourceResponse.h" | 42 #include "platform/network/ResourceResponse.h" |
43 #include "platform/weborigin/SecurityOrigin.h" | 43 #include "platform/weborigin/SecurityOrigin.h" |
44 #include "wtf/Assertions.h" | 44 #include "wtf/Assertions.h" |
45 #include "wtf/Vector.h" | |
46 #include "wtf/text/CString.h" | 45 #include "wtf/text/CString.h" |
47 #include "wtf/text/StringBuffer.h" | 46 #include "wtf/text/StringBuffer.h" |
48 #include "wtf/unicode/UTF8.h" | 47 #include "wtf/unicode/UTF8.h" |
49 #include <libxslt/imports.h> | 48 #include <libxslt/imports.h> |
50 #include <libxslt/security.h> | 49 #include <libxslt/security.h> |
51 #include <libxslt/variables.h> | 50 #include <libxslt/variables.h> |
52 #include <libxslt/xsltutils.h> | 51 #include <libxslt/xsltutils.h> |
53 | 52 |
54 namespace blink { | 53 namespace blink { |
55 | 54 |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 | 342 |
344 sheet->method = origMethod; | 343 sheet->method = origMethod; |
345 setXSLTLoadCallBack(0, 0, 0); | 344 setXSLTLoadCallBack(0, 0, 0); |
346 xsltFreeStylesheet(sheet); | 345 xsltFreeStylesheet(sheet); |
347 m_stylesheet = nullptr; | 346 m_stylesheet = nullptr; |
348 | 347 |
349 return success; | 348 return success; |
350 } | 349 } |
351 | 350 |
352 } // namespace blink | 351 } // namespace blink |
OLD | NEW |