Index: Source/core/html/HTMLImport.h |
diff --git a/Source/core/html/HTMLImport.h b/Source/core/html/HTMLImport.h |
index afcec1728d0471c54f5b1418f10a27561a2d1004..910ad65053010d976221c034c04c3cd346582f11 100644 |
--- a/Source/core/html/HTMLImport.h |
+++ b/Source/core/html/HTMLImport.h |
@@ -34,6 +34,7 @@ |
namespace WebCore { |
class Document; |
+class Frame; |
class HTMLImportsController; |
class HTMLImport { |
@@ -41,11 +42,14 @@ public: |
virtual ~HTMLImport() { } |
bool haveChildrenLoaded(); |
+ Frame* frame(); |
+ Document* master(); |
virtual HTMLImportsController* controller() = 0; |
virtual HTMLImport* parent() = 0; |
virtual Document* document() = 0; |
virtual void wasDetachedFromDocument() = 0; |
+ virtual void didFinishParsing() = 0; |
}; |
} // namespace WebCore |