Commit ae85ee7e authored by kouhei@chromium.org's avatar kouhei@chromium.org

Remove struct HTMLTokenizer::Checkpoint which is never used

BUG=None

Review URL: https://codereview.chromium.org/1322083002

git-svn-id: svn://svn.chromium.org/blink/trunk@201541 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent a1ebf4cf
...@@ -121,24 +121,6 @@ public: ...@@ -121,24 +121,6 @@ public:
CDATASectionDoubleRightSquareBracketState, 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 // This function returns true if it emits a token. Otherwise, callers
// must provide the same (in progress) token on the next call (unless // must provide the same (in progress) token on the next call (unless
// they call reset() first). // they call reset() first).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment