| 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. | 6  * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 
| 7  * (http://www.torchmobile.com/) | 7  * (http://www.torchmobile.com/) | 
| 8  * | 8  * | 
| 9  * This library is free software; you can redistribute it and/or | 9  * This library is free software; you can redistribute it and/or | 
| 10  * modify it under the terms of the GNU Library General Public | 10  * modify it under the terms of the GNU Library General Public | 
| (...skipping 25 matching lines...) Expand all  Loading... | 
| 36 #include "wtf/HashMap.h" | 36 #include "wtf/HashMap.h" | 
| 37 #include "wtf/RefCounted.h" | 37 #include "wtf/RefCounted.h" | 
| 38 #include "wtf/text/CString.h" | 38 #include "wtf/text/CString.h" | 
| 39 #include "wtf/text/StringHash.h" | 39 #include "wtf/text/StringHash.h" | 
| 40 #include <libxml/tree.h> | 40 #include <libxml/tree.h> | 
| 41 #include <memory> | 41 #include <memory> | 
| 42 | 42 | 
| 43 namespace blink { | 43 namespace blink { | 
| 44 | 44 | 
| 45 class ContainerNode; | 45 class ContainerNode; | 
| 46 class ResourceFetcher; |  | 
| 47 class DocumentFragment; | 46 class DocumentFragment; | 
| 48 class Document; | 47 class Document; | 
| 49 class Element; | 48 class Element; | 
| 50 class FrameView; | 49 class FrameView; | 
| 51 class Text; | 50 class Text; | 
| 52 | 51 | 
| 53 class XMLParserContext : public RefCounted<XMLParserContext> { | 52 class XMLParserContext : public RefCounted<XMLParserContext> { | 
| 54  public: | 53  public: | 
| 55   static PassRefPtr<XMLParserContext> createMemoryParser(xmlSAXHandlerPtr, | 54   static PassRefPtr<XMLParserContext> createMemoryParser(xmlSAXHandlerPtr, | 
| 56                                                          void* userData, | 55                                                          void* userData, | 
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 220 }; | 219 }; | 
| 221 | 220 | 
| 222 xmlDocPtr xmlDocPtrForString(Document*, | 221 xmlDocPtr xmlDocPtrForString(Document*, | 
| 223                              const String& source, | 222                              const String& source, | 
| 224                              const String& url); | 223                              const String& url); | 
| 225 HashMap<String, String> parseAttributes(const String&, bool& attrsOK); | 224 HashMap<String, String> parseAttributes(const String&, bool& attrsOK); | 
| 226 | 225 | 
| 227 }  // namespace blink | 226 }  // namespace blink | 
| 228 | 227 | 
| 229 #endif  // XMLDocumentParser_h | 228 #endif  // XMLDocumentParser_h | 
| OLD | NEW | 
|---|