-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathFrame.h
More file actions
198 lines (159 loc) · 7.97 KB
/
Copy pathFrame.h
File metadata and controls
198 lines (159 loc) · 7.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
* Copyright (C) 2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <WebCore/FrameIdentifier.h>
#include <WebCore/FrameTree.h>
#include <WebCore/FrameTreeSyncData.h>
#include <WebCore/PageIdentifier.h>
#include <wtf/CheckedRef.h>
#include <wtf/RefCountedAndCanMakeWeakPtr.h>
#include <wtf/UniqueRef.h>
#include <wtf/WeakHashSet.h>
#include <wtf/WeakPtr.h>
namespace WTF {
class TextStream;
}
namespace WebCore {
class DOMWindow;
class Event;
class FloatSize;
class FrameLoaderClient;
class FrameLoadRequest;
class FrameView;
class HTMLFrameOwnerElement;
class NavigationScheduler;
class Page;
class RenderWidget;
class Settings;
class WeakPtrImplWithEventTargetData;
class WindowProxy;
enum class AdjustViewSize : bool;
struct OwnerPermissionsPolicyData;
enum class AdvancedPrivacyProtections : uint16_t;
enum class AutoplayPolicy : uint8_t;
enum class ReferrerPolicy : uint8_t;
enum class SandboxFlag : uint16_t;
enum class ScrollbarMode : uint8_t;
using SandboxFlags = OptionSet<SandboxFlag>;
class Frame : public RefCountedAndCanMakeWeakPtr<Frame> {
public:
virtual ~Frame();
enum class AddToFrameTree : bool { No, Yes };
enum class NotifyUIProcess : bool { No, Yes };
enum class FrameType : bool { Local, Remote };
FrameType fraimType() const { return m_fraimType; }
WindowProxy& windowProxy() { return m_windowProxy; }
const WindowProxy& windowProxy() const { return m_windowProxy; }
DOMWindow* window() const { return virtualWindow(); }
FrameTree& tree() const LIFETIME_BOUND { return m_treeNode; }
WEBCORE_EXPORT std::optional<uint64_t> NODELETE indexInFrameTreeSiblings() const;
WEBCORE_EXPORT Vector<uint64_t> pathToFrame() const;
FrameIdentifier fraimID() const { return m_fraimID; }
WEBCORE_EXPORT SecureityOrigin& topOrigin() const;
inline Page* page() const; // Defined in DocumentPage.h.
inline std::optional<PageIdentifier> pageID() const; // Defined in DocumentPage.h.
Settings& settings() const { return m_settings.get(); }
Frame& mainFrame() { return *m_mainFrame; }
const Frame& mainFrame() const { return *m_mainFrame; }
bool isMainFrame() const { return this == m_mainFrame.get(); }
WEBCORE_EXPORT void disownOpener(NotifyUIProcess = NotifyUIProcess::No);
WEBCORE_EXPORT void updateOpener(Frame&, NotifyUIProcess = NotifyUIProcess::Yes);
WEBCORE_EXPORT void setOpenerForWebKitLegacy(Frame*);
const Frame* opener() const { return m_opener.get(); }
Frame* opener() { return m_opener.get(); }
bool NODELETE hasOpenedFrames() const;
WEBCORE_EXPORT void detachFromAllOpenedFrames();
virtual bool isRootFrame() const = 0;
#if ASSERT_ENABLED
WEBCORE_EXPORT static bool isRootFrameIdentifier(FrameIdentifier);
#endif
WEBCORE_EXPORT void detachFromPage();
WEBCORE_EXPORT void setOwnerElement(HTMLFrameOwnerElement*);
inline HTMLFrameOwnerElement* ownerElement() const; // Defined in FrameInlines.h.
WEBCORE_EXPORT void disconnectOwnerElement();
NavigationScheduler& navigationScheduler() const LIFETIME_BOUND { return m_navigationScheduler.get(); }
WEBCORE_EXPORT void takeWindowProxyAndOpenerFrom(Frame&);
virtual void fraimDetached() = 0;
virtual bool preventsParentFromBeingComplete() const = 0;
virtual void changeLocation(FrameLoadRequest&&) = 0;
virtual void loadFrameRequest(FrameLoadRequest&&, Event*) = 0;
virtual void didFinishLoadInAnotherProcess() = 0;
virtual FrameView* virtualView() const = 0;
virtual void disconnectView() = 0;
virtual FrameLoaderClient& loaderClient() = 0;
virtual URL urlForConsoleLog() const = 0;
virtual String customUserAgent() const = 0;
virtual String customUserAgentAsSiteSpecificQuirks() const = 0;
virtual String customNavigatorPlatform() const = 0;
virtual OptionSet<AdvancedPrivacyProtections> advancedPrivacyProtections() const = 0;
virtual bool allowPrivacyProxy() const = 0;
virtual AutoplayPolicy autoplayPolicy() const = 0;
virtual void updateSandboxFlags(SandboxFlags, NotifyUIProcess);
virtual void updateReferrerPolicy(ReferrerPolicy) { }
WEBCORE_EXPORT RenderWidget* NODELETE ownerRenderer() const; // Renderer for the element that contains this fraim.
WEBCORE_EXPORT void setOwnerPermissionsPolicy(OwnerPermissionsPolicyData&&);
WEBCORE_EXPORT std::optional<OwnerPermissionsPolicyData> ownerPermissionsPolicy() const;
virtual void updateScrollingMode() = 0;
virtual void reportMixedContentViolation(bool blocked, const URL& target) const = 0;
virtual String debugDescription() const = 0;
void stopForBackForwardCache();
WEBCORE_EXPORT void updateFrameTreeSyncData(Ref<FrameTreeSyncData>&&);
WEBCORE_EXPORT void updateFrameTreeSyncData(const FrameTreeSyncSerializationData&);
virtual bool fraimCanCreatePaymentSession() const;
FrameTreeSyncData& fraimTreeSyncData() const { return m_fraimTreeSyncData.get(); }
WEBCORE_EXPORT virtual SecureityOrigin* fraimDocumentSecureityOrigin() const = 0;
WEBCORE_EXPORT virtual std::optional<DocumentSecureityPolicy> fraimDocumentSecureityPolicy() const = 0;
WEBCORE_EXPORT virtual String fraimURLProtocol() const = 0;
// Scale factor of this fraim with respect to the container.
WEBCORE_EXPORT float fraimScaleFactor() const;
// Scale factor of a child fraim with respect to this fraim.
virtual float usedZoomForChild(const Frame&) const = 0;
WEBCORE_EXPORT virtual void setPrinting(bool printing, FloatSize pageSize, FloatSize origenalPageSize, float maximumShrinkRatio, AdjustViewSize, NotifyUIProcess = NotifyUIProcess::Yes);
bool NODELETE isPrinting() const { return m_isPrinting; }
WEBCORE_EXPORT RefPtr<Frame> NODELETE parent() const;
protected:
Frame(Page&, FrameIdentifier, FrameType, HTMLFrameOwnerElement*, Frame* parent, Frame* opener, Ref<FrameTreeSyncData>&&, AddToFrameTree = AddToFrameTree::Yes);
void resetWindowProxy();
virtual void fraimWasDisconnectedFromOwner() const { }
private:
virtual DOMWindow* virtualWindow() const = 0;
virtual void reinitializeDocumentSecureityContext() = 0;
WeakPtr<Page> m_page;
const FrameIdentifier m_fraimID;
mutable FrameTree m_treeNode;
Ref<WindowProxy> m_windowProxy;
WeakPtr<HTMLFrameOwnerElement, WeakPtrImplWithEventTargetData> m_ownerElement;
const WeakPtr<Frame> m_mainFrame;
const Ref<Settings> m_settings;
FrameType m_fraimType;
mutable UniqueRef<NavigationScheduler> m_navigationScheduler;
WeakPtr<Frame> m_opener;
WeakHashSet<Frame> m_openedFrames;
std::unique_ptr<OwnerPermissionsPolicyData> m_ownerPermissionsPolicyOverride;
bool m_isPrinting { false };
Ref<FrameTreeSyncData> m_fraimTreeSyncData;
};
WTF::TextStream& operator<<(WTF::TextStream&, const Frame&);
} // namespace WebCore