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

Side by Side Diff: third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.h

Issue 2272043002: Remove unnecessary includes from HTMLDocumentParser.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp » ('j') | 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) 2010 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef HTMLDocumentParser_h 26 #ifndef HTMLDocumentParser_h
27 #define HTMLDocumentParser_h 27 #define HTMLDocumentParser_h
28 28
29 #include "bindings/core/v8/DocumentWriteEvaluator.h"
30 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
31 #include "core/dom/ParserContentPolicy.h" 30 #include "core/dom/ParserContentPolicy.h"
32 #include "core/dom/ScriptableDocumentParser.h" 31 #include "core/dom/ScriptableDocumentParser.h"
33 #include "core/fetch/ResourceClient.h"
34 #include "core/frame/UseCounter.h"
35 #include "core/html/parser/BackgroundHTMLInputStream.h" 32 #include "core/html/parser/BackgroundHTMLInputStream.h"
36 #include "core/html/parser/CompactHTMLToken.h"
37 #include "core/html/parser/HTMLInputStream.h" 33 #include "core/html/parser/HTMLInputStream.h"
38 #include "core/html/parser/HTMLParserOptions.h" 34 #include "core/html/parser/HTMLParserOptions.h"
39 #include "core/html/parser/HTMLParserReentryPermit.h" 35 #include "core/html/parser/HTMLParserReentryPermit.h"
40 #include "core/html/parser/HTMLPreloadScanner.h" 36 #include "core/html/parser/HTMLPreloadScanner.h"
41 #include "core/html/parser/HTMLScriptRunnerHost.h" 37 #include "core/html/parser/HTMLScriptRunnerHost.h"
42 #include "core/html/parser/HTMLSourceTracker.h" 38 #include "core/html/parser/HTMLSourceTracker.h"
43 #include "core/html/parser/HTMLToken.h" 39 #include "core/html/parser/HTMLToken.h"
44 #include "core/html/parser/HTMLTokenizer.h" 40 #include "core/html/parser/HTMLTokenizer.h"
45 #include "core/html/parser/HTMLTreeBuilderSimulator.h" 41 #include "core/html/parser/HTMLTreeBuilderSimulator.h"
46 #include "core/html/parser/ParserSynchronizationPolicy.h" 42 #include "core/html/parser/ParserSynchronizationPolicy.h"
47 #include "core/html/parser/TextResourceDecoder.h" 43 #include "core/html/parser/TextResourceDecoder.h"
48 #include "core/html/parser/XSSAuditor.h" 44 #include "core/html/parser/XSSAuditor.h"
49 #include "core/html/parser/XSSAuditorDelegate.h" 45 #include "core/html/parser/XSSAuditorDelegate.h"
50 #include "platform/text/SegmentedString.h"
51 #include "wtf/Deque.h" 46 #include "wtf/Deque.h"
52 #include "wtf/RefPtr.h" 47 #include "wtf/RefPtr.h"
53 #include "wtf/WeakPtr.h" 48 #include "wtf/WeakPtr.h"
54 #include "wtf/text/TextPosition.h" 49 #include "wtf/text/TextPosition.h"
55 #include <memory> 50 #include <memory>
56 51
57 namespace blink { 52 namespace blink {
58 53
59 class BackgroundHTMLParser; 54 class BackgroundHTMLParser;
60 class CompactHTMLToken; 55 class CompactHTMLToken;
61 class Document; 56 class Document;
62 class DocumentEncodingData; 57 class DocumentEncodingData;
63 class DocumentFragment; 58 class DocumentFragment;
64 class Element; 59 class Element;
65 class HTMLDocument; 60 class HTMLDocument;
66 class HTMLParserScheduler; 61 class HTMLParserScheduler;
62 class HTMLPreloadScanner;
67 class HTMLResourcePreloader; 63 class HTMLResourcePreloader;
68 class HTMLScriptRunner; 64 class HTMLScriptRunner;
69 class HTMLTreeBuilder; 65 class HTMLTreeBuilder;
70 class PumpSession; 66 class PumpSession;
67 class SegmentedString;
71 class TokenizedChunkQueue; 68 class TokenizedChunkQueue;
69 class DocumentWriteEvaluator;
72 70
73 class CORE_EXPORT HTMLDocumentParser : public ScriptableDocumentParser, private HTMLScriptRunnerHost { 71 class CORE_EXPORT HTMLDocumentParser : public ScriptableDocumentParser, private HTMLScriptRunnerHost {
74 USING_GARBAGE_COLLECTED_MIXIN(HTMLDocumentParser); 72 USING_GARBAGE_COLLECTED_MIXIN(HTMLDocumentParser);
75 USING_PRE_FINALIZER(HTMLDocumentParser, dispose); 73 USING_PRE_FINALIZER(HTMLDocumentParser, dispose);
76 public: 74 public:
77 static HTMLDocumentParser* create(HTMLDocument& document, ParserSynchronizat ionPolicy backgroundParsingPolicy) 75 static HTMLDocumentParser* create(HTMLDocument& document, ParserSynchronizat ionPolicy backgroundParsingPolicy)
78 { 76 {
79 return new HTMLDocumentParser(document, backgroundParsingPolicy); 77 return new HTMLDocumentParser(document, backgroundParsingPolicy);
80 } 78 }
81 ~HTMLDocumentParser() override; 79 ~HTMLDocumentParser() override;
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 bool m_tasksWereSuspended; 259 bool m_tasksWereSuspended;
262 unsigned m_pumpSessionNestingLevel; 260 unsigned m_pumpSessionNestingLevel;
263 unsigned m_pumpSpeculationsSessionNestingLevel; 261 unsigned m_pumpSpeculationsSessionNestingLevel;
264 bool m_isParsingAtLineNumber; 262 bool m_isParsingAtLineNumber;
265 bool m_triedLoadingLinkHeaders; 263 bool m_triedLoadingLinkHeaders;
266 }; 264 };
267 265
268 } // namespace blink 266 } // namespace blink
269 267
270 #endif 268 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698