OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
3 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 3 * Copyright (C) 2010 Google, 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 13 matching lines...) Expand all Loading... |
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 HTMLTokenizer_h | 27 #ifndef HTMLTokenizer_h |
28 #define HTMLTokenizer_h | 28 #define HTMLTokenizer_h |
29 | 29 |
30 #include "core/html/parser/HTMLParserOptions.h" | 30 #include "core/html/parser/HTMLParserOptions.h" |
31 #include "core/html/parser/HTMLToken.h" | 31 #include "core/html/parser/HTMLToken.h" |
32 #include "core/html/parser/InputStreamPreprocessor.h" | 32 #include "core/html/parser/InputStreamPreprocessor.h" |
33 #include "platform/text/SegmentedString.h" | 33 #include "platform/text/SegmentedString.h" |
34 #include "wtf/PtrUtil.h" | |
35 #include <memory> | |
36 | 34 |
37 namespace blink { | 35 namespace blink { |
38 | 36 |
39 class HTMLTokenizer { | 37 class HTMLTokenizer { |
40 WTF_MAKE_NONCOPYABLE(HTMLTokenizer); | 38 WTF_MAKE_NONCOPYABLE(HTMLTokenizer); |
41 USING_FAST_MALLOC(HTMLTokenizer); | 39 USING_FAST_MALLOC(HTMLTokenizer); |
42 public: | 40 public: |
43 static std::unique_ptr<HTMLTokenizer> create(const HTMLParserOptions& option
s) { return wrapUnique(new HTMLTokenizer(options)); } | 41 static PassOwnPtr<HTMLTokenizer> create(const HTMLParserOptions& options) {
return adoptPtr(new HTMLTokenizer(options)); } |
44 ~HTMLTokenizer(); | 42 ~HTMLTokenizer(); |
45 | 43 |
46 void reset(); | 44 void reset(); |
47 | 45 |
48 enum State { | 46 enum State { |
49 DataState, | 47 DataState, |
50 CharacterReferenceInDataState, | 48 CharacterReferenceInDataState, |
51 RCDATAState, | 49 RCDATAState, |
52 CharacterReferenceInRCDATAState, | 50 CharacterReferenceInRCDATAState, |
53 RAWTEXTState, | 51 RAWTEXTState, |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 // token (e.g., when lexing script). We buffer the name of the end tag | 261 // token (e.g., when lexing script). We buffer the name of the end tag |
264 // token here so we remember it next time we re-enter the tokenizer. | 262 // token here so we remember it next time we re-enter the tokenizer. |
265 Vector<LChar, 32> m_bufferedEndTagName; | 263 Vector<LChar, 32> m_bufferedEndTagName; |
266 | 264 |
267 HTMLParserOptions m_options; | 265 HTMLParserOptions m_options; |
268 }; | 266 }; |
269 | 267 |
270 } // namespace blink | 268 } // namespace blink |
271 | 269 |
272 #endif | 270 #endif |
OLD | NEW |