Chromium Code Reviews| Index: Source/core/html/HTMLImport.h |
| diff --git a/Source/core/html/HTMLImport.h b/Source/core/html/HTMLImport.h |
| index 1f6ebee5cb1b9bd04f09d4ccda30b05793d1df0e..eaeabfbcd910c982b9d295de677ce6e6aa6cda89 100644 |
| --- a/Source/core/html/HTMLImport.h |
| +++ b/Source/core/html/HTMLImport.h |
| @@ -150,8 +150,8 @@ public: |
| virtual Document* document() const = 0; |
| virtual void wasDetachedFromDocument() = 0; |
| virtual void didFinishParsing() = 0; |
| - virtual bool isProcessing() const = 0; |
| virtual bool isDone() const = 0; // FIXME: Should be renamed to haveFinishedLoading() |
| + virtual bool ownsLoader() const { return false; } |
| virtual CustomElementPendingImport* pendingImport() const { return 0; } |
| protected: |
| @@ -167,6 +167,7 @@ protected: |
| , m_createdByParser(createdByParser) |
| { } |
| + |
|
dominicc (has gone to gerrit)
2014/01/10 06:44:52
Seems like there's excessive whitespace here.
|
| virtual void didUnblockFromCreatingDocument(); |
| virtual void didUnblockFromRunningScript(); |
| virtual void didBecomeReady(); |