OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 #include "public/web/WebFrame.h" | 6 #include "public/web/WebFrame.h" |
7 | 7 |
8 #include "bindings/core/v8/WindowProxyManager.h" | 8 #include "bindings/core/v8/WindowProxyManager.h" |
9 #include "core/frame/FrameHost.h" | 9 #include "core/frame/FrameHost.h" |
10 #include "core/frame/FrameView.h" | 10 #include "core/frame/FrameView.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 frame->setOpener(m_opener); | 77 frame->setOpener(m_opener); |
78 setOpener(nullptr); | 78 setOpener(nullptr); |
79 } | 79 } |
80 m_openedFrameTracker->transferTo(frame); | 80 m_openedFrameTracker->transferTo(frame); |
81 | 81 |
82 FrameHost* host = oldFrame->host(); | 82 FrameHost* host = oldFrame->host(); |
83 AtomicString name = oldFrame->tree().name(); | 83 AtomicString name = oldFrame->tree().name(); |
84 FrameOwner* owner = oldFrame->owner(); | 84 FrameOwner* owner = oldFrame->owner(); |
85 oldFrame->disconnectOwnerElement(); | 85 oldFrame->disconnectOwnerElement(); |
86 | 86 |
87 v8::HandleScope handleScope(v8::Isolate::GetCurrent()); | |
88 HashMap<DOMWrapperWorld*, v8::Local<v8::Object>> globals; | |
89 oldFrame->windowProxyManager()->clearForNavigation(); | |
90 oldFrame->windowProxyManager()->releaseGlobals(globals); | |
91 | |
92 // Although the Document in this frame is now unloaded, many resources | 87 // Although the Document in this frame is now unloaded, many resources |
93 // associated with the frame itself have not yet been freed yet. | 88 // associated with the frame itself have not yet been freed yet. |
94 oldFrame->detach(FrameDetachType::Swap); | 89 oldFrame->detach(FrameDetachType::Swap); |
95 | 90 |
91 v8::HandleScope handleScope(v8::Isolate::GetCurrent()); | |
haraken
2015/10/30 13:03:35
toIsolate(oldFrame)
| |
92 HashMap<DOMWrapperWorld*, v8::Local<v8::Object>> globals; | |
93 oldFrame->windowProxyManager()->releaseGlobals(globals); | |
94 | |
96 // Finally, clone the state of the current Frame into one matching | 95 // Finally, clone the state of the current Frame into one matching |
97 // the type of the passed in WebFrame. | 96 // the type of the passed in WebFrame. |
98 // FIXME: This is a bit clunky; this results in pointless decrements and | 97 // FIXME: This is a bit clunky; this results in pointless decrements and |
99 // increments of connected subframes. | 98 // increments of connected subframes. |
100 if (frame->isWebLocalFrame()) { | 99 if (frame->isWebLocalFrame()) { |
101 LocalFrame& localFrame = *toWebLocalFrameImpl(frame)->frame(); | 100 LocalFrame& localFrame = *toWebLocalFrameImpl(frame)->frame(); |
102 ASSERT(owner == localFrame.owner()); | 101 ASSERT(owner == localFrame.owner()); |
103 if (owner) { | 102 if (owner) { |
104 if (owner->isLocal()) { | 103 if (owner->isLocal()) { |
105 HTMLFrameOwnerElement* ownerElement = toHTMLFrameOwnerElement(ow ner); | 104 HTMLFrameOwnerElement* ownerElement = toHTMLFrameOwnerElement(ow ner); |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
355 void WebFrame::traceFrames(VisitorDispatcher visitor, WebFrame* frame) { tra ceFramesImpl(visitor, frame); } \ | 354 void WebFrame::traceFrames(VisitorDispatcher visitor, WebFrame* frame) { tra ceFramesImpl(visitor, frame); } \ |
356 void WebFrame::clearWeakFrames(VisitorDispatcher visitor) { clearWeakFramesI mpl(visitor); } | 355 void WebFrame::clearWeakFrames(VisitorDispatcher visitor) { clearWeakFramesI mpl(visitor); } |
357 | 356 |
358 DEFINE_VISITOR_METHOD(Visitor*) | 357 DEFINE_VISITOR_METHOD(Visitor*) |
359 DEFINE_VISITOR_METHOD(InlinedGlobalMarkingVisitor) | 358 DEFINE_VISITOR_METHOD(InlinedGlobalMarkingVisitor) |
360 | 359 |
361 #undef DEFINE_VISITOR_METHOD | 360 #undef DEFINE_VISITOR_METHOD |
362 #endif | 361 #endif |
363 | 362 |
364 } // namespace blink | 363 } // namespace blink |
OLD | NEW |