Index: Source/core/html/parser/HTMLTokenizer.h |
diff --git a/Source/core/html/parser/HTMLTokenizer.h b/Source/core/html/parser/HTMLTokenizer.h |
index f6097c330d4274f3cc07a1bfe3d8545c1fbb0c23..c23ab6ca3085ea819b6604fd04b741809900fa66 100644 |
--- a/Source/core/html/parser/HTMLTokenizer.h |
+++ b/Source/core/html/parser/HTMLTokenizer.h |
@@ -121,24 +121,6 @@ public: |
CDATASectionDoubleRightSquareBracketState, |
}; |
- struct Checkpoint { |
- STACK_ALLOCATED(); |
- HTMLParserOptions options; |
- State state; |
- UChar additionalAllowedCharacter; |
- bool skipNextNewLine; |
- bool shouldAllowCDATA; |
- |
- Checkpoint() |
- : options(0) |
- , state() |
- , additionalAllowedCharacter('\0') |
- , skipNextNewLine(false) |
- , shouldAllowCDATA(false) |
- { |
- } |
- }; |
- |
// This function returns true if it emits a token. Otherwise, callers |
// must provide the same (in progress) token on the next call (unless |
// they call reset() first). |