| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com) |
| 3 * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. | 3 * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) | 4 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) |
| 5 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 5 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #ifndef XMLDocumentParser_h | 25 #ifndef XMLDocumentParser_h |
| 26 #define XMLDocumentParser_h | 26 #define XMLDocumentParser_h |
| 27 | 27 |
| 28 #include "core/dom/ParserContentPolicy.h" | 28 #include "core/dom/ParserContentPolicy.h" |
| 29 #include "core/dom/ScriptableDocumentParser.h" | 29 #include "core/dom/ScriptableDocumentParser.h" |
| 30 #include "core/loader/cache/ResourceClient.h" | 30 #include "core/loader/cache/ResourceClient.h" |
| 31 #include "core/loader/cache/ResourcePtr.h" | 31 #include "core/loader/cache/ResourcePtr.h" |
| 32 #include "core/platform/text/SegmentedString.h" | 32 #include "core/platform/text/SegmentedString.h" |
| 33 #include "core/xml/XMLErrors.h" | 33 #include "core/xml/XMLErrors.h" |
| 34 #include "wtf/HashMap.h" |
| 35 #include "wtf/OwnPtr.h" |
| 36 #include "wtf/text/CString.h" |
| 37 #include "wtf/text/StringHash.h" |
| 34 #include <libxml/tree.h> | 38 #include <libxml/tree.h> |
| 35 #include <wtf/HashMap.h> | |
| 36 #include <wtf/OwnPtr.h> | |
| 37 #include <wtf/text/CString.h> | |
| 38 #include <wtf/text/StringHash.h> | |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 class ContainerNode; | 42 class ContainerNode; |
| 43 class ScriptResource; | 43 class ScriptResource; |
| 44 class ResourceFetcher; | 44 class ResourceFetcher; |
| 45 class DocumentFragment; | 45 class DocumentFragment; |
| 46 class Document; | 46 class Document; |
| 47 class Element; | 47 class Element; |
| 48 class FrameView; | 48 class FrameView; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 SegmentedString m_pendingSrc; | 191 SegmentedString m_pendingSrc; |
| 192 }; | 192 }; |
| 193 | 193 |
| 194 xmlDocPtr xmlDocPtrForString(ResourceFetcher*, const String& source, const Strin
g& url); | 194 xmlDocPtr xmlDocPtrForString(ResourceFetcher*, const String& source, const Strin
g& url); |
| 195 | 195 |
| 196 HashMap<String, String> parseAttributes(const String&, bool& attrsOK); | 196 HashMap<String, String> parseAttributes(const String&, bool& attrsOK); |
| 197 | 197 |
| 198 } // namespace WebCore | 198 } // namespace WebCore |
| 199 | 199 |
| 200 #endif // XMLDocumentParser_h | 200 #endif // XMLDocumentParser_h |
| OLD | NEW |