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

Unified Diff: Source/core/dom/DocumentParser.cpp

Issue 74493002: Removed refcounting from TextResourceDecoder (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_step2
Patch Set: Compile fix 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
« no previous file with comments | « Source/core/dom/DocumentParser.h ('k') | Source/core/fetch/CSSStyleSheetResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentParser.cpp
diff --git a/Source/core/dom/DocumentParser.cpp b/Source/core/dom/DocumentParser.cpp
index fa6d9e8356f9afc98c91c806aebabee39f8f46e5..ac2ffa99a21aa8fe10b0facdbea2b1cac5b16f85 100644
--- a/Source/core/dom/DocumentParser.cpp
+++ b/Source/core/dom/DocumentParser.cpp
@@ -47,12 +47,12 @@ DocumentParser::~DocumentParser()
ASSERT(!m_document);
}
-void DocumentParser::setDecoder(PassRefPtr<TextResourceDecoder>)
+void DocumentParser::setDecoder(PassOwnPtr<TextResourceDecoder>)
{
ASSERT_NOT_REACHED();
}
-PassRefPtr<TextResourceDecoder> DocumentParser::decoder()
+TextResourceDecoder* DocumentParser::decoder()
{
return 0;
}
« no previous file with comments | « Source/core/dom/DocumentParser.h ('k') | Source/core/fetch/CSSStyleSheetResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698