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
|
/*
* Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
* 1999-2001 Lars Knoll <knoll@kde.org>
* 1999-2001 Antti Koivisto <koivisto@kde.org>
* 2000-2001 Simon Hausmann <hausmann@kde.org>
* 2000-2001 Dirk Mueller <mueller@kde.org>
* 2000 Stefan Schimanski <1Stein@gmx.de>
* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
* Copyright (C) 2008 Eric Seidel <eric@webkit.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef Frame_h
#define Frame_h
#include "core/frame/FrameTypes.h"
#include "core/page/FrameTree.h"
#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/RefCounted.h"
namespace blink {
class ChromeClient;
class Document;
class FrameClient;
class FrameHost;
class FrameOwner;
class HTMLFrameOwnerElement;
class DOMWindow;
class KURL;
class Page;
class RenderPart;
class SecurityContext;
class Settings;
class WebLayer;
class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> {
public:
virtual ~Frame();
virtual void trace(Visitor*);
virtual bool isLocalFrame() const { return false; }
virtual bool isRemoteFrame() const { return false; }
virtual DOMWindow* domWindow() const = 0;
virtual void navigate(Document& originDocument, const KURL&, bool lockBackForwardList) = 0;
virtual void reload(ReloadPolicy, ClientRedirectPolicy) = 0;
virtual void detach();
void detachChildren();
virtual void disconnectOwnerElement();
FrameClient* client() const;
// NOTE: Page is moving out of Blink up into the browser process as
// part of the site-isolation (out of process iframes) work.
// FrameHost should be used instead where possible.
Page* page() const;
FrameHost* host() const; // Null when the frame is detached.
bool isMainFrame() const;
bool isLocalRoot() const;
FrameOwner* owner() const;
void setOwner(FrameOwner* owner) { m_owner = owner; }
HTMLFrameOwnerElement* deprecatedLocalOwner() const;
FrameTree& tree() const;
ChromeClient& chromeClient() const;
virtual SecurityContext* securityContext() const = 0;
Frame* findFrameForNavigation(const AtomicString& name, Frame& activeFrame);
Frame* findUnsafeParentScrollPropagationBoundary();
bool canNavigate(const Frame&);
virtual void printNavigationErrorMessage(const Frame&, const char* reason) = 0;
RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
// FIXME: These should move to RemoteFrame when that is instantiated.
void setRemotePlatformLayer(WebLayer*);
WebLayer* remotePlatformLayer() const { return m_remotePlatformLayer; }
Settings* settings() const; // can be null
// FIXME: This method identifies a LocalFrame that is acting as a RemoteFrame.
// It is necessary only until we can instantiate a RemoteFrame, at which point
// it can be removed and its callers can be converted to use the isRemoteFrame()
// method.
bool isRemoteFrameTemporary() const { return m_remotePlatformLayer; }
virtual bool checkLoadComplete() = 0;
protected:
Frame(FrameClient*, FrameHost*, FrameOwner*);
mutable FrameTree m_treeNode;
RawPtrWillBeMember<FrameHost> m_host;
RawPtrWillBeMember<FrameOwner> m_owner;
private:
FrameClient* m_client;
WebLayer* m_remotePlatformLayer;
};
inline FrameClient* Frame::client() const
{
return m_client;
}
inline FrameOwner* Frame::owner() const
{
return m_owner;
}
inline FrameTree& Frame::tree() const
{
return m_treeNode;
}
// Allow equality comparisons of Frames by reference or pointer, interchangeably.
DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame)
} // namespace blink
#endif // Frame_h
|