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

Unified Diff: third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.h

Issue 2181943002: Rename ParsedChunk to TokenizedChunk in core/html/parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
Index: third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.h
diff --git a/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.h b/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.h
index b7b73064d1eef5354fd9b8bab5f462a18de50db6..029fb08139a84e22e39a459fa63fa3cf2e3242c1 100644
--- a/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.h
+++ b/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.h
@@ -33,8 +33,8 @@
#include "core/html/parser/HTMLPreloadScanner.h"
#include "core/html/parser/HTMLSourceTracker.h"
#include "core/html/parser/HTMLTreeBuilderSimulator.h"
-#include "core/html/parser/ParsedChunkQueue.h"
#include "core/html/parser/TextResourceDecoder.h"
+#include "core/html/parser/TokenizedChunkQueue.h"
#include "core/html/parser/XSSAuditorDelegate.h"
#include "wtf/WeakPtr.h"
#include <memory>
@@ -57,7 +57,7 @@ public:
WeakPtr<HTMLDocumentParser> parser;
std::unique_ptr<XSSAuditor> xssAuditor;
std::unique_ptr<TextResourceDecoder> decoder;
- RefPtr<ParsedChunkQueue> parsedChunkQueue;
+ RefPtr<TokenizedChunkQueue> tokenizedChunkQueue;
// outstandingTokenLimit must be greater than or equal to
// pendingTokenLimit
size_t outstandingTokenLimit;
@@ -124,7 +124,7 @@ private:
std::unique_ptr<TextResourceDecoder> m_decoder;
DocumentEncodingData m_lastSeenEncodingData;
std::unique_ptr<WebTaskRunner> m_loadingTaskRunner;
- RefPtr<ParsedChunkQueue> m_parsedChunkQueue;
+ RefPtr<TokenizedChunkQueue> m_tokenizedChunkQueue;
bool m_startingScript;
double m_lastBytesReceivedTime;
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698