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

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

Issue 31063004: Have Frame::loader() return a reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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/timing/PerformanceTiming.cpp ('k') | Source/modules/donottrack/NavigatorDoNotTrack.cpp » ('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 7640d305b5d0d6f6039bff619f1efeadf2aa0c3b..747a773705630ee47c396d1a5d2bba5c6ccaa9ef 100644
--- a/Source/core/xml/parser/XMLDocumentParser.cpp
+++ b/Source/core/xml/parser/XMLDocumentParser.cpp
@@ -1008,7 +1008,7 @@ void XMLDocumentParser::startElementNs(const AtomicString& localName, const Atom
toHTMLHtmlElement(newElement)->insertedByParser();
if (!m_parsingFragment && isFirstElement && document()->frame())
- document()->frame()->loader()->dispatchDocumentElementAvailable();
+ document()->frame()->loader().dispatchDocumentElementAvailable();
}
void XMLDocumentParser::endElementNs()
« no previous file with comments | « Source/core/timing/PerformanceTiming.cpp ('k') | Source/modules/donottrack/NavigatorDoNotTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698