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

Unified Diff: sky/engine/core/dom/Document.cpp

Issue 664573004: Live the dream (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: DEPS Created 6 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 | « sky/engine/core/dom/Document.h ('k') | sky/engine/core/dom/DocumentParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/Document.cpp
diff --git a/sky/engine/core/dom/Document.cpp b/sky/engine/core/dom/Document.cpp
index 52b8684050a6fa26964496e2cc6ba156d70c6dc1..03191dc05eb0acdd070bb782f4ff0103ea4dae0c 100644
--- a/sky/engine/core/dom/Document.cpp
+++ b/sky/engine/core/dom/Document.cpp
@@ -1481,7 +1481,7 @@ void Document::cancelParsing()
checkCompleted();
}
-PassRefPtrWillBeRawPtr<DocumentParser> Document::startParsing()
+void Document::startParsing()
{
ASSERT(!m_parser);
ASSERT(!m_isParsing);
@@ -1491,7 +1491,6 @@ PassRefPtrWillBeRawPtr<DocumentParser> Document::startParsing()
m_parser = createParser();
setParsing(true);
setReadyState(Loading);
- return m_parser;
}
Element* Document::viewportDefiningElement(RenderStyle* rootStyle) const
« no previous file with comments | « sky/engine/core/dom/Document.h ('k') | sky/engine/core/dom/DocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698