| Index: Source/core/html/HTMLImportChild.cpp
|
| diff --git a/Source/core/html/HTMLImportChild.cpp b/Source/core/html/HTMLImportChild.cpp
|
| index 287d317bd06d175641304b0a95e61dcf00d731fe..7f2931cdb5d5a9bc7931cac57b2c255398084799 100644
|
| --- a/Source/core/html/HTMLImportChild.cpp
|
| +++ b/Source/core/html/HTMLImportChild.cpp
|
| @@ -189,14 +189,14 @@ void HTMLImportChild::shareLoader(HTMLImportChild* loader)
|
| root()->blockerGone();
|
| }
|
|
|
| -bool HTMLImportChild::isProcessing() const
|
| +bool HTMLImportChild::isDone() const
|
| {
|
| - return m_loader && m_loader->isOwnedBy(this) && !m_loader->isDone();
|
| + return m_loader && m_loader->isDone();
|
| }
|
|
|
| -bool HTMLImportChild::isDone() const
|
| +bool HTMLImportChild::ownsLoader() const
|
| {
|
| - return m_loader && m_loader->isDone();
|
| + return m_loader->isOwnedBy(this);
|
| }
|
|
|
| bool HTMLImportChild::loaderHasError() const
|
|
|