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

Unified Diff: Source/core/dom/Document.h

Issue 133273007: Revert "Moved text decoding to the parser thread" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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 | « Source/core/dom/DecodedDataDocumentParser.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 415ffb969e64294a5daa937b17c77927496ea6cd..786d970f387c41ee8ad43603be30bde3b4123c3d 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -492,6 +492,7 @@ public:
void clearAXObjectCache();
// to get visually ordered hebrew and arabic pages right
+ void setVisuallyOrdered();
bool visuallyOrdered() const { return m_visuallyOrdered; }
DocumentLoader* loader() const;
@@ -843,10 +844,10 @@ public:
void finishedParsing();
void setEncodingData(const DocumentEncodingData& newData);
- const WTF::TextEncoding& encoding() const { return m_encodingData.encoding(); }
+ const WTF::TextEncoding& encoding() const { return m_encodingData.encoding; }
- bool encodingWasDetectedHeuristically() const { return m_encodingData.wasDetectedHeuristically(); }
- bool sawDecodingError() const { return m_encodingData.sawDecodingError(); }
+ bool encodingWasDetectedHeuristically() const { return m_encodingData.wasDetectedHeuristically; }
+ bool sawDecodingError() const { return m_encodingData.sawDecodingError; }
void setAnnotatedRegionsDirty(bool f) { m_annotatedRegionsDirty = f; }
bool annotatedRegionsDirty() const { return m_annotatedRegionsDirty; }
« no previous file with comments | « Source/core/dom/DecodedDataDocumentParser.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698