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

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

Issue 2622043003: Replaced RefPtr::release with std::move in Source/core. (Closed)
Patch Set: Created 3 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
Index: third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp b/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
index 152defdd0dc07dff6417ef9503560f945bfb48e7..2f8fe92ec425c5217ac0a8d3fb049f881abf0a8c 100644
--- a/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
+++ b/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
@@ -122,7 +122,7 @@ BackgroundHTMLParser::BackgroundHTMLParser(
m_xssAuditor(std::move(config->xssAuditor)),
m_decoder(std::move(config->decoder)),
m_loadingTaskRunner(std::move(loadingTaskRunner)),
- m_tokenizedChunkQueue(config->tokenizedChunkQueue.release()),
+ m_tokenizedChunkQueue(std::move(config->tokenizedChunkQueue)),
m_pendingCSPMetaTokenIndex(
HTMLDocumentParser::TokenizedChunk::noPendingToken),
m_startingScript(false),

Powered by Google App Engine
This is Rietveld 408576698