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

Unified Diff: Source/core/html/parser/HTMLTokenizer.h

Issue 1322083002: Remove struct HTMLTokenizer::Checkpoint which is never used (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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).
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698