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

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

Issue 74513003: Moved text decoding to the parser thread (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_step25
Patch Set: Removed AtomicString from HTMLMetaCharsetParser Created 7 years, 1 month 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
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; }

Powered by Google App Engine
This is Rietveld 408576698