Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.h

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 10 matching lines...) Expand all
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA. 22 * Boston, MA 02110-1301, USA.
23 * 23 *
24 */ 24 */
25 25
26 #ifndef XMLDocumentParser_h 26 #ifndef XMLDocumentParser_h
27 #define XMLDocumentParser_h 27 #define XMLDocumentParser_h
28 28
29 #include "core/dom/ParserContentPolicy.h" 29 #include "core/dom/ParserContentPolicy.h"
30 #include "core/dom/ScriptableDocumentParser.h" 30 #include "core/dom/ScriptableDocumentParser.h"
31 #include "core/fetch/ResourceClient.h"
32 #include "core/loader/resource/ScriptResource.h" 31 #include "core/loader/resource/ScriptResource.h"
33 #include "core/xml/parser/XMLErrors.h" 32 #include "core/xml/parser/XMLErrors.h"
34 #include "platform/heap/Handle.h" 33 #include "platform/heap/Handle.h"
34 #include "platform/loader/fetch/ResourceClient.h"
35 #include "platform/text/SegmentedString.h" 35 #include "platform/text/SegmentedString.h"
36 #include "wtf/Compiler.h" 36 #include "wtf/Compiler.h"
37 #include "wtf/HashMap.h" 37 #include "wtf/HashMap.h"
38 #include "wtf/RefCounted.h" 38 #include "wtf/RefCounted.h"
39 #include "wtf/text/CString.h" 39 #include "wtf/text/CString.h"
40 #include "wtf/text/StringHash.h" 40 #include "wtf/text/StringHash.h"
41 #include <libxml/tree.h> 41 #include <libxml/tree.h>
42 #include <memory> 42 #include <memory>
43 43
44 namespace blink { 44 namespace blink {
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 }; 220 };
221 221
222 xmlDocPtr xmlDocPtrForString(Document*, 222 xmlDocPtr xmlDocPtrForString(Document*,
223 const String& source, 223 const String& source,
224 const String& url); 224 const String& url);
225 HashMap<String, String> parseAttributes(const String&, bool& attrsOK); 225 HashMap<String, String> parseAttributes(const String&, bool& attrsOK);
226 226
227 } // namespace blink 227 } // namespace blink
228 228
229 #endif // XMLDocumentParser_h 229 #endif // XMLDocumentParser_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698