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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include "public/web/WebFrame.h"
#include "core/frame/FrameHost.h"
#include "core/frame/FrameView.h"
#include "core/frame/RemoteFrame.h"
#include "core/html/HTMLFrameOwnerElement.h"
#include "platform/UserGestureIndicator.h"
#include "platform/heap/Handle.h"
#include "web/OpenedFrameTracker.h"
#include "web/WebLocalFrameImpl.h"
#include "web/WebRemoteFrameImpl.h"
#include <algorithm>
namespace blink {
Frame* toCoreFrame(const WebFrame* frame)
{
if (!frame)
return 0;
return frame->isWebLocalFrame()
? static_cast<Frame*>(toWebLocalFrameImpl(frame)->frame())
: toWebRemoteFrameImpl(frame)->frame();
}
bool WebFrame::swap(WebFrame* frame)
{
using std::swap;
RefPtrWillBeRawPtr<Frame> oldFrame = toCoreFrame(this);
// All child frames must be detached first.
oldFrame->detachChildren();
// If the frame has been detached during detaching its children, return
// immediately.
// FIXME: There is no unit test for this condition, so one needs to be
// written.
if (!oldFrame->host())
return false;
if (m_parent) {
if (m_parent->m_firstChild == this)
m_parent->m_firstChild = frame;
if (m_parent->m_lastChild == this)
m_parent->m_lastChild = frame;
// FIXME: This is due to the fact that the |frame| may be a provisional
// local frame, because we don't know if the navigation will result in
// an actual page or something else, like a download. The PlzNavigate
// project will remove the need for provisional local frames.
frame->m_parent = m_parent;
m_parent = nullptr;
}
if (m_previousSibling) {
m_previousSibling->m_nextSibling = frame;
swap(m_previousSibling, frame->m_previousSibling);
}
if (m_nextSibling) {
m_nextSibling->m_previousSibling = frame;
swap(m_nextSibling, frame->m_nextSibling);
}
if (m_opener) {
m_opener->m_openedFrameTracker->remove(this);
m_opener->m_openedFrameTracker->add(frame);
swap(m_opener, frame->m_opener);
}
if (!m_openedFrameTracker->isEmpty()) {
m_openedFrameTracker->updateOpener(frame);
frame->m_openedFrameTracker.reset(m_openedFrameTracker.release());
}
// Finally, clone the state of the current Frame into one matching
// the type of the passed in WebFrame.
// FIXME: This is a bit clunky; this results in pointless decrements and
// increments of connected subframes.
FrameOwner* owner = oldFrame->owner();
oldFrame->disconnectOwnerElement();
if (Frame* newFrame = toCoreFrame(frame)) {
ASSERT(owner == newFrame->owner());
if (owner->isLocal()) {
HTMLFrameOwnerElement* ownerElement = toHTMLFrameOwnerElement(owner);
ownerElement->setContentFrame(*newFrame);
if (newFrame->isLocalFrame())
ownerElement->setWidget(toLocalFrame(newFrame)->view());
}
} else if (frame->isWebLocalFrame()) {
toWebLocalFrameImpl(frame)->initializeCoreFrame(oldFrame->host(), owner, oldFrame->tree().name(), nullAtom);
} else {
toWebRemoteFrameImpl(frame)->initializeCoreFrame(oldFrame->host(), owner, oldFrame->tree().name());
}
return true;
}
void WebFrame::detach()
{
toCoreFrame(this)->detach();
}
WebSecurityOrigin WebFrame::securityOrigin() const
{
return WebSecurityOrigin(toCoreFrame(this)->securityContext()->securityOrigin());
}
WebFrame* WebFrame::opener() const
{
return m_opener;
}
void WebFrame::setOpener(WebFrame* opener)
{
if (m_opener)
m_opener->m_openedFrameTracker->remove(this);
if (opener)
opener->m_openedFrameTracker->add(this);
m_opener = opener;
}
void WebFrame::appendChild(WebFrame* child)
{
// FIXME: Original code asserts that the frames have the same Page. We
// should add an equivalent check... figure out what.
child->m_parent = this;
WebFrame* oldLast = m_lastChild;
m_lastChild = child;
if (oldLast) {
child->m_previousSibling = oldLast;
oldLast->m_nextSibling = child;
} else {
m_firstChild = child;
}
toCoreFrame(this)->tree().invalidateScopedChildCount();
toCoreFrame(this)->host()->incrementSubframeCount();
}
void WebFrame::removeChild(WebFrame* child)
{
child->m_parent = 0;
if (m_firstChild == child)
m_firstChild = child->m_nextSibling;
else
child->m_previousSibling->m_nextSibling = child->m_nextSibling;
if (m_lastChild == child)
m_lastChild = child->m_previousSibling;
else
child->m_nextSibling->m_previousSibling = child->m_previousSibling;
child->m_previousSibling = child->m_nextSibling = 0;
toCoreFrame(this)->tree().invalidateScopedChildCount();
toCoreFrame(this)->host()->decrementSubframeCount();
}
void WebFrame::setParent(WebFrame* parent)
{
m_parent = parent;
}
WebFrame* WebFrame::parent() const
{
return m_parent;
}
WebFrame* WebFrame::top() const
{
WebFrame* frame = const_cast<WebFrame*>(this);
for (WebFrame* parent = frame; parent; parent = parent->m_parent)
frame = parent;
return frame;
}
WebFrame* WebFrame::firstChild() const
{
return m_firstChild;
}
WebFrame* WebFrame::lastChild() const
{
return m_lastChild;
}
WebFrame* WebFrame::previousSibling() const
{
return m_previousSibling;
}
WebFrame* WebFrame::nextSibling() const
{
return m_nextSibling;
}
WebFrame* WebFrame::traversePrevious(bool wrap) const
{
if (Frame* frame = toCoreFrame(this))
return fromFrame(frame->tree().traversePreviousWithWrap(wrap));
return 0;
}
WebFrame* WebFrame::traverseNext(bool wrap) const
{
if (Frame* frame = toCoreFrame(this))
return fromFrame(frame->tree().traverseNextWithWrap(wrap));
return 0;
}
WebFrame* WebFrame::findChildByName(const WebString& name) const
{
Frame* frame = toCoreFrame(this);
if (!frame)
return 0;
// FIXME: It's not clear this should ever be called to find a remote frame.
// Perhaps just disallow that completely?
return fromFrame(frame->tree().child(name));
}
WebFrame* WebFrame::fromFrame(Frame* frame)
{
if (!frame)
return 0;
if (frame->isLocalFrame())
return WebLocalFrameImpl::fromFrame(toLocalFrame(*frame));
return WebRemoteFrameImpl::fromFrame(toRemoteFrame(*frame));
}
WebFrame::WebFrame()
: m_parent(0)
, m_previousSibling(0)
, m_nextSibling(0)
, m_firstChild(0)
, m_lastChild(0)
, m_opener(0)
, m_openedFrameTracker(new OpenedFrameTracker)
{
}
WebFrame::~WebFrame()
{
m_openedFrameTracker.reset(0);
}
#if ENABLE(OILPAN)
void WebFrame::traceFrame(Visitor* visitor, WebFrame* frame)
{
if (!frame)
return;
if (frame->isWebLocalFrame())
visitor->trace(toWebLocalFrameImpl(frame));
else
visitor->trace(toWebRemoteFrameImpl(frame));
}
void WebFrame::traceFrames(Visitor* visitor, WebFrame* frame)
{
ASSERT(frame);
traceFrame(visitor, frame->m_parent);
for (WebFrame* child = frame->firstChild(); child; child = child->nextSibling())
traceFrame(visitor, child);
// m_opener is a weak reference.
frame->m_openedFrameTracker->traceFrames(visitor);
}
bool WebFrame::isFrameAlive(Visitor* visitor, const WebFrame* frame)
{
if (!frame)
return true;
if (frame->isWebLocalFrame())
return visitor->isAlive(toWebLocalFrameImpl(frame));
return visitor->isAlive(toWebRemoteFrameImpl(frame));
}
void WebFrame::clearWeakFrames(Visitor* visitor)
{
if (!isFrameAlive(visitor, m_opener))
m_opener = nullptr;
}
#endif
} // namespace blink
|