Chromium Code Reviews

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

Issue 19940002: [HTML Import] Respect Content Security Policy Model (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Mac build Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/html/HTMLImport.cpp
diff --git a/Source/core/html/HTMLImport.cpp b/Source/core/html/HTMLImport.cpp
index 8e349be5c3a5688b9b61d29e9d15fb1a90672d44..e55f8433125732d32614abeecdbbc23d5e20ecd7 100644
--- a/Source/core/html/HTMLImport.cpp
+++ b/Source/core/html/HTMLImport.cpp
@@ -42,4 +42,14 @@ bool HTMLImport::haveChildrenLoaded()
return true;
}
+Frame* HTMLImport::frame()
+{
+ return master()->frame();
+}
+
+Document* HTMLImport::master()
+{
+ return controller()->document();
+}
+
} // namespace WebCore

Powered by Google App Engine