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

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

Issue 2497463004: Loading: move core/fetch/*Resource* to core/loader/resource/ (Closed)
Patch Set: [rebase] Created 4 years, 1 month 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
« no previous file with comments | « third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, 2008, 2014 Apple Inc. All rights reserved. 3 * Copyright (C) 2005, 2006, 2008, 2014 Apple Inc. All rights reserved.
4 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 4 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
5 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) 5 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
7 * Copyright (C) 2008 Holger Hans Peter Freyther 7 * Copyright (C) 2008 Holger Hans Peter Freyther
8 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * 10 *
(...skipping 28 matching lines...) Expand all
39 #include "core/dom/DocumentFragment.h" 39 #include "core/dom/DocumentFragment.h"
40 #include "core/dom/DocumentParserTiming.h" 40 #include "core/dom/DocumentParserTiming.h"
41 #include "core/dom/DocumentType.h" 41 #include "core/dom/DocumentType.h"
42 #include "core/dom/ProcessingInstruction.h" 42 #include "core/dom/ProcessingInstruction.h"
43 #include "core/dom/ScriptLoader.h" 43 #include "core/dom/ScriptLoader.h"
44 #include "core/dom/StyleEngine.h" 44 #include "core/dom/StyleEngine.h"
45 #include "core/dom/TransformSource.h" 45 #include "core/dom/TransformSource.h"
46 #include "core/fetch/FetchInitiatorTypeNames.h" 46 #include "core/fetch/FetchInitiatorTypeNames.h"
47 #include "core/fetch/RawResource.h" 47 #include "core/fetch/RawResource.h"
48 #include "core/fetch/ResourceFetcher.h" 48 #include "core/fetch/ResourceFetcher.h"
49 #include "core/fetch/ScriptResource.h"
50 #include "core/frame/LocalFrame.h" 49 #include "core/frame/LocalFrame.h"
51 #include "core/frame/UseCounter.h" 50 #include "core/frame/UseCounter.h"
52 #include "core/html/HTMLHtmlElement.h" 51 #include "core/html/HTMLHtmlElement.h"
53 #include "core/html/HTMLTemplateElement.h" 52 #include "core/html/HTMLTemplateElement.h"
54 #include "core/html/parser/HTMLEntityParser.h" 53 #include "core/html/parser/HTMLEntityParser.h"
55 #include "core/html/parser/TextResourceDecoder.h" 54 #include "core/html/parser/TextResourceDecoder.h"
56 #include "core/inspector/ConsoleMessage.h" 55 #include "core/inspector/ConsoleMessage.h"
57 #include "core/loader/FrameLoader.h" 56 #include "core/loader/FrameLoader.h"
58 #include "core/loader/ImageLoader.h" 57 #include "core/loader/ImageLoader.h"
59 #include "core/svg/graphics/SVGImage.h" 58 #include "core/svg/graphics/SVGImage.h"
(...skipping 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after
1707 RefPtr<XMLParserContext> parser = 1706 RefPtr<XMLParserContext> parser =
1708 XMLParserContext::createStringParser(&sax, &state); 1707 XMLParserContext::createStringParser(&sax, &state);
1709 String parseString = "<?xml version=\"1.0\"?><attrs " + string + " />"; 1708 String parseString = "<?xml version=\"1.0\"?><attrs " + string + " />";
1710 parseChunk(parser->context(), parseString); 1709 parseChunk(parser->context(), parseString);
1711 finishParsing(parser->context()); 1710 finishParsing(parser->context());
1712 attrsOK = state.gotAttributes; 1711 attrsOK = state.gotAttributes;
1713 return state.attributes; 1712 return state.attributes;
1714 } 1713 }
1715 1714
1716 } // namespace blink 1715 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698