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

Unified Diff: Source/core/html/HTMLImport.h

Issue 19940002: [HTML Import] Respect Content Security Policy Model (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Mac build failure Created 7 years, 5 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/dom/DocumentInit.cpp ('k') | Source/core/html/HTMLImport.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/dom/DocumentInit.cpp ('k') | Source/core/html/HTMLImport.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698