| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
| 3 * 1999-2001 Lars Knoll <knoll@kde.org> | 3 * 1999-2001 Lars Knoll <knoll@kde.org> |
| 4 * 1999-2001 Antti Koivisto <koivisto@kde.org> | 4 * 1999-2001 Antti Koivisto <koivisto@kde.org> |
| 5 * 2000-2001 Simon Hausmann <hausmann@kde.org> | 5 * 2000-2001 Simon Hausmann <hausmann@kde.org> |
| 6 * 2000-2001 Dirk Mueller <mueller@kde.org> | 6 * 2000-2001 Dirk Mueller <mueller@kde.org> |
| 7 * 2000 Stefan Schimanski <1Stein@gmx.de> | 7 * 2000 Stefan Schimanski <1Stein@gmx.de> |
| 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 class KURL; | 48 class KURL; |
| 49 class Page; | 49 class Page; |
| 50 class SecurityContext; | 50 class SecurityContext; |
| 51 class Settings; | 51 class Settings; |
| 52 class WindowProxy; | 52 class WindowProxy; |
| 53 | 53 |
| 54 class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> { | 54 class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> { |
| 55 public: | 55 public: |
| 56 virtual ~Frame(); | 56 virtual ~Frame(); |
| 57 | 57 |
| 58 virtual void trace(Visitor*); | 58 DECLARE_VIRTUAL_TRACE(); |
| 59 | 59 |
| 60 virtual bool isLocalFrame() const { return false; } | 60 virtual bool isLocalFrame() const { return false; } |
| 61 virtual bool isRemoteFrame() const { return false; } | 61 virtual bool isRemoteFrame() const { return false; } |
| 62 | 62 |
| 63 virtual DOMWindow* domWindow() const = 0; | 63 virtual DOMWindow* domWindow() const = 0; |
| 64 virtual WindowProxy* windowProxy(DOMWrapperWorld&) = 0; | 64 virtual WindowProxy* windowProxy(DOMWrapperWorld&) = 0; |
| 65 | 65 |
| 66 virtual void navigate(Document& originDocument, const KURL&, bool lockBackFo
rwardList) = 0; | 66 virtual void navigate(Document& originDocument, const KURL&, bool lockBackFo
rwardList) = 0; |
| 67 virtual void reload(ReloadPolicy, ClientRedirectPolicy) = 0; | 67 virtual void reload(ReloadPolicy, ClientRedirectPolicy) = 0; |
| 68 | 68 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 { | 135 { |
| 136 return m_treeNode; | 136 return m_treeNode; |
| 137 } | 137 } |
| 138 | 138 |
| 139 // Allow equality comparisons of Frames by reference or pointer, interchangeably
. | 139 // Allow equality comparisons of Frames by reference or pointer, interchangeably
. |
| 140 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) | 140 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) |
| 141 | 141 |
| 142 } // namespace blink | 142 } // namespace blink |
| 143 | 143 |
| 144 #endif // Frame_h | 144 #endif // Frame_h |
| OLD | NEW |