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

Side by Side Diff: Source/core/html/parser/HTMLTreeBuilder.h

Issue 17388003: Remove unused includes from core/{editing,fileapi,history,html} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 6 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 | « Source/core/html/parser/HTMLTokenizer.cpp ('k') | Source/core/html/parser/HTMLTreeBuilder.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 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 12 matching lines...) Expand all
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef HTMLTreeBuilder_h 27 #ifndef HTMLTreeBuilder_h
28 #define HTMLTreeBuilder_h 28 #define HTMLTreeBuilder_h
29 29
30 #include "core/html/parser/HTMLConstructionSite.h" 30 #include "core/html/parser/HTMLConstructionSite.h"
31 #include "core/html/parser/HTMLElementStack.h" 31 #include "core/html/parser/HTMLElementStack.h"
32 #include "core/html/parser/HTMLParserOptions.h" 32 #include "core/html/parser/HTMLParserOptions.h"
33 #include <wtf/Noncopyable.h> 33 #include "wtf/Noncopyable.h"
34 #include <wtf/PassOwnPtr.h> 34 #include "wtf/PassOwnPtr.h"
35 #include <wtf/PassRefPtr.h> 35 #include "wtf/PassRefPtr.h"
36 #include <wtf/RefPtr.h> 36 #include "wtf/RefPtr.h"
37 #include <wtf/text/StringBuilder.h> 37 #include "wtf/Vector.h"
38 #include <wtf/text/TextPosition.h> 38 #include "wtf/text/StringBuilder.h"
39 #include <wtf/unicode/Unicode.h> 39 #include "wtf/text/TextPosition.h"
40 #include <wtf/Vector.h>
41 40
42 namespace WebCore { 41 namespace WebCore {
43 42
44 class AtomicHTMLToken; 43 class AtomicHTMLToken;
45 class Document; 44 class Document;
46 class DocumentFragment; 45 class DocumentFragment;
47 class Element; 46 class Element;
48 class Frame; 47 class Frame;
49 class HTMLToken; 48 class HTMLToken;
50 class HTMLDocument; 49 class HTMLDocument;
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 230
232 RefPtr<Element> m_scriptToProcess; // <script> tag which needs processing be fore resuming the parser. 231 RefPtr<Element> m_scriptToProcess; // <script> tag which needs processing be fore resuming the parser.
233 TextPosition m_scriptToProcessStartPosition; // Starting line number of the script tag needing processing. 232 TextPosition m_scriptToProcessStartPosition; // Starting line number of the script tag needing processing.
234 233
235 HTMLParserOptions m_options; 234 HTMLParserOptions m_options;
236 }; 235 };
237 236
238 } 237 }
239 238
240 #endif 239 #endif
OLDNEW
« no previous file with comments | « Source/core/html/parser/HTMLTokenizer.cpp ('k') | Source/core/html/parser/HTMLTreeBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698