Chromium Code Reviews| 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; |