| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2013 Google Inc. All rights reserved. | 9 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #ifndef DocumentInit_h | 28 #ifndef DocumentInit_h |
| 29 #define DocumentInit_h | 29 #define DocumentInit_h |
| 30 | 30 |
| 31 #include "core/CoreExport.h" | 31 #include "core/CoreExport.h" |
| 32 #include "core/dom/SandboxFlags.h" | 32 #include "core/dom/SandboxFlags.h" |
| 33 #include "core/dom/SecurityContext.h" | 33 #include "core/dom/SecurityContext.h" |
| 34 #include "core/dom/custom/V0CustomElementRegistrationContext.h" | 34 #include "core/dom/custom/V0CustomElementRegistrationContext.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "platform/weborigin/KURL.h" | 36 #include "platform/weborigin/KURL.h" |
| 37 #include "public/platform/WebInsecureRequestPolicy.h" |
| 37 | 38 |
| 38 namespace blink { | 39 namespace blink { |
| 39 | 40 |
| 40 class Document; | 41 class Document; |
| 41 class LocalFrame; | 42 class LocalFrame; |
| 42 class HTMLImportsController; | 43 class HTMLImportsController; |
| 43 class Settings; | 44 class Settings; |
| 44 | 45 |
| 45 class CORE_EXPORT DocumentInit final { | 46 class CORE_EXPORT DocumentInit final { |
| 46 STACK_ALLOCATED(); | 47 STACK_ALLOCATED(); |
| 47 public: | 48 public: |
| 48 DocumentInit(const KURL& = KURL(), LocalFrame* = nullptr, Document* contextD
ocument = nullptr, HTMLImportsController* = nullptr); | 49 DocumentInit(const KURL& = KURL(), LocalFrame* = nullptr, Document* contextD
ocument = nullptr, HTMLImportsController* = nullptr); |
| 49 DocumentInit(Document* ownerDocument, const KURL&, LocalFrame*, Document* co
ntextDocument = nullptr, HTMLImportsController* = nullptr); | 50 DocumentInit(Document* ownerDocument, const KURL&, LocalFrame*, Document* co
ntextDocument = nullptr, HTMLImportsController* = nullptr); |
| 50 DocumentInit(const DocumentInit&); | 51 DocumentInit(const DocumentInit&); |
| 51 ~DocumentInit(); | 52 ~DocumentInit(); |
| 52 | 53 |
| 53 const KURL& url() const { return m_url; } | 54 const KURL& url() const { return m_url; } |
| 54 LocalFrame* frame() const { return m_frame; } | 55 LocalFrame* frame() const { return m_frame; } |
| 55 HTMLImportsController* importsController() const { return m_importsControlle
r; } | 56 HTMLImportsController* importsController() const { return m_importsControlle
r; } |
| 56 | 57 |
| 57 bool hasSecurityContext() const { return frameForSecurityContext(); } | 58 bool hasSecurityContext() const { return frameForSecurityContext(); } |
| 58 bool shouldTreatURLAsSrcdocDocument() const; | 59 bool shouldTreatURLAsSrcdocDocument() const; |
| 59 bool shouldSetURL() const; | 60 bool shouldSetURL() const; |
| 60 bool isSeamlessAllowedFor(Document* child) const; | 61 bool isSeamlessAllowedFor(Document* child) const; |
| 61 bool shouldReuseDefaultView() const { return m_shouldReuseDefaultView; } | 62 bool shouldReuseDefaultView() const { return m_shouldReuseDefaultView; } |
| 62 SandboxFlags getSandboxFlags() const; | 63 SandboxFlags getSandboxFlags() const; |
| 63 bool shouldEnforceStrictMixedContentChecking() const; | |
| 64 bool isHostedInReservedIPRange() const; | 64 bool isHostedInReservedIPRange() const; |
| 65 SecurityContext::InsecureRequestsPolicy getInsecureRequestsPolicy() const; | 65 WebInsecureRequestPolicy getInsecureRequestPolicy() const; |
| 66 SecurityContext::InsecureNavigationsSet* insecureNavigationsToUpgrade() cons
t; | 66 SecurityContext::InsecureNavigationsSet* insecureNavigationsToUpgrade() cons
t; |
| 67 | 67 |
| 68 Document* parent() const { return m_parent.get(); } | 68 Document* parent() const { return m_parent.get(); } |
| 69 Document* owner() const { return m_owner.get(); } | 69 Document* owner() const { return m_owner.get(); } |
| 70 KURL parentBaseURL() const; | 70 KURL parentBaseURL() const; |
| 71 LocalFrame* ownerFrame() const; | 71 LocalFrame* ownerFrame() const; |
| 72 Settings* settings() const; | 72 Settings* settings() const; |
| 73 | 73 |
| 74 DocumentInit& withRegistrationContext(V0CustomElementRegistrationContext*); | 74 DocumentInit& withRegistrationContext(V0CustomElementRegistrationContext*); |
| 75 DocumentInit& withNewRegistrationContext(); | 75 DocumentInit& withNewRegistrationContext(); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 97 // won't be blown away when the network load commits. To make that happen, w
e | 97 // won't be blown away when the network load commits. To make that happen, w
e |
| 98 // "securely transition" the existing LocalDOMWindow to the Document that re
sults from | 98 // "securely transition" the existing LocalDOMWindow to the Document that re
sults from |
| 99 // the network load. See also SecurityContext::isSecureTransitionTo. | 99 // the network load. See also SecurityContext::isSecureTransitionTo. |
| 100 // FIXME: This is for DocumentWriter creation, not for one of Document. | 100 // FIXME: This is for DocumentWriter creation, not for one of Document. |
| 101 bool m_shouldReuseDefaultView; | 101 bool m_shouldReuseDefaultView; |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 } // namespace blink | 104 } // namespace blink |
| 105 | 105 |
| 106 #endif // DocumentInit_h | 106 #endif // DocumentInit_h |
| OLD | NEW |