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

Side by Side Diff: third_party/WebKit/Source/core/dom/DocumentInit.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
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 30 matching lines...) Expand all
41 namespace blink { 41 namespace blink {
42 42
43 class Document; 43 class Document;
44 class LocalFrame; 44 class LocalFrame;
45 class HTMLImportsController; 45 class HTMLImportsController;
46 class Settings; 46 class Settings;
47 47
48 class CORE_EXPORT DocumentInit final { 48 class CORE_EXPORT DocumentInit final {
49 STACK_ALLOCATED(); 49 STACK_ALLOCATED();
50 public: 50 public:
51 DocumentInit(const KURL& = KURL(), LocalFrame* = nullptr, WeakPtrWillBeRawPt r<Document> contextDocument = nullptr, HTMLImportsController* = nullptr); 51 DocumentInit(const KURL& = KURL(), LocalFrame* = nullptr, RawPtr<Document> c ontextDocument = nullptr, HTMLImportsController* = nullptr);
52 DocumentInit(PassRefPtrWillBeRawPtr<Document> ownerDocument, const KURL&, Lo calFrame*, WeakPtrWillBeRawPtr<Document> contextDocument = nullptr, HTMLImportsC ontroller* = nullptr); 52 DocumentInit(RawPtr<Document> ownerDocument, const KURL&, LocalFrame*, RawPt r<Document> contextDocument = nullptr, HTMLImportsController* = nullptr);
53 DocumentInit(const DocumentInit&); 53 DocumentInit(const DocumentInit&);
54 ~DocumentInit(); 54 ~DocumentInit();
55 55
56 const KURL& url() const { return m_url; } 56 const KURL& url() const { return m_url; }
57 LocalFrame* frame() const { return m_frame; } 57 LocalFrame* frame() const { return m_frame; }
58 HTMLImportsController* importsController() const { return m_importsControlle r; } 58 HTMLImportsController* importsController() const { return m_importsControlle r; }
59 59
60 bool hasSecurityContext() const { return frameForSecurityContext(); } 60 bool hasSecurityContext() const { return frameForSecurityContext(); }
61 bool shouldTreatURLAsSrcdocDocument() const; 61 bool shouldTreatURLAsSrcdocDocument() const;
62 bool shouldSetURL() const; 62 bool shouldSetURL() const;
63 bool isSeamlessAllowedFor(Document* child) const; 63 bool isSeamlessAllowedFor(Document* child) const;
64 bool shouldReuseDefaultView() const { return m_shouldReuseDefaultView; } 64 bool shouldReuseDefaultView() const { return m_shouldReuseDefaultView; }
65 SandboxFlags getSandboxFlags() const; 65 SandboxFlags getSandboxFlags() const;
66 bool shouldEnforceStrictMixedContentChecking() const; 66 bool shouldEnforceStrictMixedContentChecking() const;
67 bool isHostedInReservedIPRange() const; 67 bool isHostedInReservedIPRange() const;
68 SecurityContext::InsecureRequestsPolicy getInsecureRequestsPolicy() const; 68 SecurityContext::InsecureRequestsPolicy getInsecureRequestsPolicy() const;
69 SecurityContext::InsecureNavigationsSet* insecureNavigationsToUpgrade() cons t; 69 SecurityContext::InsecureNavigationsSet* insecureNavigationsToUpgrade() cons t;
70 70
71 Document* parent() const { return m_parent.get(); } 71 Document* parent() const { return m_parent.get(); }
72 Document* owner() const { return m_owner.get(); } 72 Document* owner() const { return m_owner.get(); }
73 KURL parentBaseURL() const; 73 KURL parentBaseURL() const;
74 LocalFrame* ownerFrame() const; 74 LocalFrame* ownerFrame() const;
75 Settings* settings() const; 75 Settings* settings() const;
76 76
77 DocumentInit& withRegistrationContext(CustomElementRegistrationContext*); 77 DocumentInit& withRegistrationContext(CustomElementRegistrationContext*);
78 DocumentInit& withNewRegistrationContext(); 78 DocumentInit& withNewRegistrationContext();
79 PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> registrationContext (Document*) const; 79 RawPtr<CustomElementRegistrationContext> registrationContext(Document*) cons t;
80 WeakPtrWillBeRawPtr<Document> contextDocument() const; 80 RawPtr<Document> contextDocument() const;
81 81
82 static DocumentInit fromContext(WeakPtrWillBeRawPtr<Document> contextDocumen t, const KURL& = KURL()); 82 static DocumentInit fromContext(RawPtr<Document> contextDocument, const KURL & = KURL());
83 83
84 private: 84 private:
85 LocalFrame* frameForSecurityContext() const; 85 LocalFrame* frameForSecurityContext() const;
86 86
87 KURL m_url; 87 KURL m_url;
88 RawPtrWillBeMember<LocalFrame> m_frame; 88 Member<LocalFrame> m_frame;
89 RefPtrWillBeMember<Document> m_parent; 89 Member<Document> m_parent;
90 RefPtrWillBeMember<Document> m_owner; 90 Member<Document> m_owner;
91 WeakPtrWillBeMember<Document> m_contextDocument; 91 Member<Document> m_contextDocument;
92 RawPtrWillBeMember<HTMLImportsController> m_importsController; 92 Member<HTMLImportsController> m_importsController;
93 RefPtrWillBeMember<CustomElementRegistrationContext> m_registrationContext; 93 Member<CustomElementRegistrationContext> m_registrationContext;
94 bool m_createNewRegistrationContext; 94 bool m_createNewRegistrationContext;
95 95
96 // In some rare cases, we'll re-use a LocalDOMWindow for a new Document. For example, 96 // In some rare cases, we'll re-use a LocalDOMWindow for a new Document. For example,
97 // when a script calls window.open("..."), the browser gives JavaScript a wi ndow 97 // when a script calls window.open("..."), the browser gives JavaScript a wi ndow
98 // synchronously but kicks off the load in the window asynchronously. Web si tes 98 // synchronously but kicks off the load in the window asynchronously. Web si tes
99 // expect that modifications that they make to the window object synchronous ly 99 // expect that modifications that they make to the window object synchronous ly
100 // won't be blown away when the network load commits. To make that happen, w e 100 // won't be blown away when the network load commits. To make that happen, w e
101 // "securely transition" the existing LocalDOMWindow to the Document that re sults from 101 // "securely transition" the existing LocalDOMWindow to the Document that re sults from
102 // the network load. See also SecurityContext::isSecureTransitionTo. 102 // the network load. See also SecurityContext::isSecureTransitionTo.
103 // FIXME: This is for DocumentWriter creation, not for one of Document. 103 // FIXME: This is for DocumentWriter creation, not for one of Document.
104 bool m_shouldReuseDefaultView; 104 bool m_shouldReuseDefaultView;
105 }; 105 };
106 106
107 } // namespace blink 107 } // namespace blink
108 108
109 #endif // DocumentInit_h 109 #endif // DocumentInit_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentFragment.cpp ('k') | third_party/WebKit/Source/core/dom/DocumentInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698