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

Unified Diff: Source/core/html/imports/HTMLImportChild.cpp

Issue 1042613002: Rename isDone() to hasFinishedLoading() for HTMLImport (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change name. Created 5 years, 9 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/html/imports/HTMLImportChild.h ('k') | Source/core/html/imports/HTMLImportStateResolver.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/imports/HTMLImportChild.cpp
diff --git a/Source/core/html/imports/HTMLImportChild.cpp b/Source/core/html/imports/HTMLImportChild.cpp
index b03804c26a3e0844f569a295ad2c178627ba3fb4..d6c45866c5e1a708b6c777047b1f0d2eacbdc195 100644
--- a/Source/core/html/imports/HTMLImportChild.cpp
+++ b/Source/core/html/imports/HTMLImportChild.cpp
@@ -141,7 +141,7 @@ void HTMLImportChild::createCustomElementMicrotaskStepIfNeeded()
{
ASSERT(!m_customElementMicrotaskStep);
- if (!isDone() && !formsCycle()) {
+ if (!hasFinishedLoading() && !formsCycle()) {
#if ENABLE(OILPAN)
m_customElementMicrotaskStep = CustomElement::didCreateImport(this);
#else
@@ -150,7 +150,7 @@ void HTMLImportChild::createCustomElementMicrotaskStepIfNeeded()
}
}
-bool HTMLImportChild::isDone() const
+bool HTMLImportChild::hasFinishedLoading() const
{
ASSERT(m_loader);
« no previous file with comments | « Source/core/html/imports/HTMLImportChild.h ('k') | Source/core/html/imports/HTMLImportStateResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698