| 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 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #include <libxslt/imports.h> | 25 #include <libxslt/imports.h> |
| 26 #include <libxslt/security.h> | 26 #include <libxslt/security.h> |
| 27 #include <libxslt/variables.h> | 27 #include <libxslt/variables.h> |
| 28 #include <libxslt/xsltutils.h> | 28 #include <libxslt/xsltutils.h> |
| 29 #include "bindings/core/v8/SourceLocation.h" | 29 #include "bindings/core/v8/SourceLocation.h" |
| 30 #include "core/dom/Document.h" | 30 #include "core/dom/Document.h" |
| 31 #include "core/dom/TransformSource.h" | 31 #include "core/dom/TransformSource.h" |
| 32 #include "core/editing/serializers/Serialization.h" | 32 #include "core/editing/serializers/Serialization.h" |
| 33 #include "core/frame/FrameConsole.h" | 33 #include "core/frame/FrameConsole.h" |
| 34 #include "core/frame/FrameHost.h" | |
| 35 #include "core/frame/LocalFrame.h" | 34 #include "core/frame/LocalFrame.h" |
| 36 #include "core/inspector/ConsoleMessage.h" | 35 #include "core/inspector/ConsoleMessage.h" |
| 37 #include "core/xml/XSLStyleSheet.h" | 36 #include "core/xml/XSLStyleSheet.h" |
| 38 #include "core/xml/XSLTExtensions.h" | 37 #include "core/xml/XSLTExtensions.h" |
| 39 #include "core/xml/XSLTUnicodeSort.h" | 38 #include "core/xml/XSLTUnicodeSort.h" |
| 40 #include "core/xml/parser/XMLDocumentParser.h" | 39 #include "core/xml/parser/XMLDocumentParser.h" |
| 41 #include "platform/SharedBuffer.h" | 40 #include "platform/SharedBuffer.h" |
| 42 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" | 41 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" |
| 43 #include "platform/loader/fetch/RawResource.h" | 42 #include "platform/loader/fetch/RawResource.h" |
| 44 #include "platform/loader/fetch/Resource.h" | 43 #include "platform/loader/fetch/Resource.h" |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 | 386 |
| 388 sheet->method = origMethod; | 387 sheet->method = origMethod; |
| 389 setXSLTLoadCallBack(0, 0, 0); | 388 setXSLTLoadCallBack(0, 0, 0); |
| 390 xsltFreeStylesheet(sheet); | 389 xsltFreeStylesheet(sheet); |
| 391 m_stylesheet = nullptr; | 390 m_stylesheet = nullptr; |
| 392 | 391 |
| 393 return success; | 392 return success; |
| 394 } | 393 } |
| 395 | 394 |
| 396 } // namespace blink | 395 } // namespace blink |
| OLD | NEW |