| 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 30 matching lines...) Expand all Loading... |
| 41 class FrameHost; | 41 class FrameHost; |
| 42 class FrameOwner; | 42 class FrameOwner; |
| 43 class HTMLFrameOwnerElement; | 43 class HTMLFrameOwnerElement; |
| 44 class DOMWindow; | 44 class DOMWindow; |
| 45 class KURL; | 45 class KURL; |
| 46 class Page; | 46 class Page; |
| 47 class RenderPart; | 47 class RenderPart; |
| 48 class Settings; | 48 class Settings; |
| 49 class WebLayer; | 49 class WebLayer; |
| 50 | 50 |
| 51 struct Referrer; | |
| 52 | |
| 53 class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> { | 51 class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> { |
| 54 public: | 52 public: |
| 55 virtual ~Frame(); | 53 virtual ~Frame(); |
| 56 | 54 |
| 57 virtual void trace(Visitor*); | 55 virtual void trace(Visitor*); |
| 58 | 56 |
| 59 virtual bool isLocalFrame() const { return false; } | 57 virtual bool isLocalFrame() const { return false; } |
| 60 virtual bool isRemoteFrame() const { return false; } | 58 virtual bool isRemoteFrame() const { return false; } |
| 61 | 59 |
| 62 virtual DOMWindow* domWindow() const = 0; | 60 virtual DOMWindow* domWindow() const = 0; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 { | 124 { |
| 127 return m_treeNode; | 125 return m_treeNode; |
| 128 } | 126 } |
| 129 | 127 |
| 130 // Allow equality comparisons of Frames by reference or pointer, interchangeably
. | 128 // Allow equality comparisons of Frames by reference or pointer, interchangeably
. |
| 131 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) | 129 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) |
| 132 | 130 |
| 133 } // namespace blink | 131 } // namespace blink |
| 134 | 132 |
| 135 #endif // Frame_h | 133 #endif // Frame_h |
| OLD | NEW |