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

Unified Diff: Source/core/dom/DocumentInit.h

Issue 19762002: [HTML Imports] Let script of imported document running. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed a failing test. 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
Index: Source/core/dom/DocumentInit.h
diff --git a/Source/core/dom/DocumentInit.h b/Source/core/dom/DocumentInit.h
index 893662fb0e7eea6a5b9113026d3b6799e3e8ea6a..a2ac60465d51a1e288432016e355ea65b1a0cbd8 100644
--- a/Source/core/dom/DocumentInit.h
+++ b/Source/core/dom/DocumentInit.h
@@ -49,6 +49,7 @@ public:
Frame* frame() const { return m_frame; }
HTMLImport* import() const { return m_import; }
+ bool hasSecurityContextSource() const;
abarth-chromium 2013/07/19 07:55:55 What does "source" mean here? Why not just "hasSe
bool shouldTreatURLAsSrcdocDocument() const;
bool shouldSetURL() const;
SandboxFlags sandboxFlags() const;
@@ -57,6 +58,8 @@ public:
Settings* settings() const;
private:
+ Frame* contextSourceFrame() const;
+
KURL m_url;
Frame* m_frame;
HTMLImport* m_import;

Powered by Google App Engine
This is Rietveld 408576698