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

Unified Diff: Source/core/loader/DocumentWriter.h

Issue 73293003: Moved setting of visual ordering from DocumentWriter to DecodedDataDocument (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_decoderownership
Patch Set: Rebase 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/loader/DocumentWriter.h
diff --git a/Source/core/loader/DocumentWriter.h b/Source/core/loader/DocumentWriter.h
index 5d3cac55d294368387c22faa252899af8d67e01b..0f7eb5b1a1aa5d13e2213f7116c598b6de131d8f 100644
--- a/Source/core/loader/DocumentWriter.h
+++ b/Source/core/loader/DocumentWriter.h
@@ -61,8 +61,6 @@ public:
const String& encoding() const { return m_decoderBuilder.encoding(); }
bool encodingWasChosenByUser() const { return m_decoderBuilder.encodingWasChosenByUser(); }
- // Exposed for DocumentParser::appendBytes.
- void reportDataReceived();
// Exposed for DocumentLoader::replaceDocument.
void appendReplacingData(const String&);
@@ -76,7 +74,6 @@ private:
PassRefPtr<Document> createDocument(const KURL&);
Document* m_document;
- bool m_hasReceivedSomeData;
TextResourceDecoderBuilder m_decoderBuilder;
RefPtr<DocumentParser> m_parser;

Powered by Google App Engine
This is Rietveld 408576698