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

Unified Diff: Source/core/xml/parser/XMLDocumentParser.cpp

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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/xml/XSLTProcessorLibxslt.cpp ('k') | Source/heap/Handle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/parser/XMLDocumentParser.cpp
diff --git a/Source/core/xml/parser/XMLDocumentParser.cpp b/Source/core/xml/parser/XMLDocumentParser.cpp
index 10106aee3350e1bb032dcdc2eeb1f7aae188a6ff..ad0f29dd1948c098fb1713f5ac7477661e8a7d3a 100644
--- a/Source/core/xml/parser/XMLDocumentParser.cpp
+++ b/Source/core/xml/parser/XMLDocumentParser.cpp
@@ -320,7 +320,7 @@ void XMLDocumentParser::clearCurrentNodeStack()
if (m_currentNode && m_currentNode != document())
m_currentNode->deref();
m_currentNode = 0;
- m_leafTextNode = 0;
+ m_leafTextNode = nullptr;
if (m_currentNodeStack.size()) { // Aborted parsing.
for (size_t i = m_currentNodeStack.size() - 1; i != 0; --i)
@@ -390,7 +390,7 @@ void XMLDocumentParser::exitText()
m_leafTextNode->appendData(toString(m_bufferedText.data(), m_bufferedText.size()));
m_bufferedText.clear();
- m_leafTextNode = 0;
+ m_leafTextNode = nullptr;
}
void XMLDocumentParser::detach()
@@ -460,7 +460,7 @@ void XMLDocumentParser::notifyFinished(Resource* unusedResource)
m_pendingScript = 0;
RefPtr<Element> e = m_scriptElement;
- m_scriptElement = 0;
+ m_scriptElement = nullptr;
ScriptLoader* scriptLoader = toScriptLoaderIfPossible(e.get());
ASSERT(scriptLoader);
@@ -475,7 +475,7 @@ void XMLDocumentParser::notifyFinished(Resource* unusedResource)
scriptLoader->dispatchLoadEvent();
}
- m_scriptElement = 0;
+ m_scriptElement = nullptr;
if (!isDetached() && !m_requestingScript)
resumeParsing();
@@ -733,7 +733,7 @@ PassRefPtr<XMLParserContext> XMLParserContext::createMemoryParser(xmlSAXHandlerP
xmlParserCtxtPtr parser = xmlCreateMemoryParserCtxt(chunk.data(), chunk.length());
if (!parser)
- return 0;
+ return nullptr;
// Copy the sax handler
memcpy(parser->sax, handlers, sizeof(xmlSAXHandler));
@@ -765,7 +765,7 @@ bool XMLDocumentParser::supportsXMLVersion(const String& version)
XMLDocumentParser::XMLDocumentParser(Document* document, FrameView* frameView)
: ScriptableDocumentParser(document)
, m_view(frameView)
- , m_context(0)
+ , m_context(nullptr)
, m_currentNode(document)
, m_isCurrentlyParsing8BitChunk(false)
, m_sawError(false)
@@ -788,7 +788,7 @@ XMLDocumentParser::XMLDocumentParser(Document* document, FrameView* frameView)
XMLDocumentParser::XMLDocumentParser(DocumentFragment* fragment, Element* parentElement, ParserContentPolicy parserContentPolicy)
: ScriptableDocumentParser(&fragment->document(), parserContentPolicy)
, m_view(0)
- , m_context(0)
+ , m_context(nullptr)
, m_currentNode(fragment)
, m_isCurrentlyParsing8BitChunk(false)
, m_sawError(false)
@@ -1072,7 +1072,7 @@ void XMLDocumentParser::endElementNs()
if (m_pendingScript)
pauseParsing();
} else {
- m_scriptElement = 0;
+ m_scriptElement = nullptr;
}
// JavaScript may have detached the parser
@@ -1453,7 +1453,7 @@ void XMLDocumentParser::doEnd()
finishParsing(context());
}
- m_context = 0;
+ m_context = nullptr;
}
}
« no previous file with comments | « Source/core/xml/XSLTProcessorLibxslt.cpp ('k') | Source/heap/Handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698