Index: Source/core/html/parser/HTMLTokenizer.h |
diff --git a/Source/core/html/parser/HTMLTokenizer.h b/Source/core/html/parser/HTMLTokenizer.h |
index aa7c059bf78244fd07539ef77799a2881245fb22..8966dba6707440066655a8ee34c93d3650426131 100644 |
--- a/Source/core/html/parser/HTMLTokenizer.h |
+++ b/Source/core/html/parser/HTMLTokenizer.h |
@@ -34,6 +34,8 @@ |
namespace WebCore { |
+class HTMLIdentifier; |
+ |
class HTMLTokenizer { |
WTF_MAKE_NONCOPYABLE(HTMLTokenizer); |
WTF_MAKE_FAST_ALLOCATED; |
@@ -176,7 +178,7 @@ public: |
// * CDATA sections in foreign content will be tokenized as bogus comments |
// instead of as character tokens. |
// |
- void updateStateFor(const AtomicString& tagName); |
+ void updateStateFor(const HTMLIdentifier& tagName); |
abarth-chromium
2013/11/27 18:18:08
Rather than introduce an AtomicString -> HTMLIdent
oystein (OOO til 10th of July)
2013/11/27 18:46:33
Which conversion do you mean here? The only place
|
bool forceNullCharacterReplacement() const { return m_forceNullCharacterReplacement; } |
void setForceNullCharacterReplacement(bool value) { m_forceNullCharacterReplacement = value; } |