| 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 11 matching lines...) Expand all Loading... |
| 22 * You should have received a copy of the GNU Library General Public License | 22 * You should have received a copy of the GNU Library General Public License |
| 23 * along with this library; see the file COPYING.LIB. If not, write to | 23 * along with this library; see the file COPYING.LIB. If not, write to |
| 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 25 * Boston, MA 02110-1301, USA. | 25 * Boston, MA 02110-1301, USA. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef Frame_h | 28 #ifndef Frame_h |
| 29 #define Frame_h | 29 #define Frame_h |
| 30 | 30 |
| 31 #include "core/CoreExport.h" | 31 #include "core/CoreExport.h" |
| 32 #include "core/frame/FrameOwner.h" |
| 32 #include "core/frame/FrameTypes.h" | 33 #include "core/frame/FrameTypes.h" |
| 33 #include "core/loader/FrameLoaderTypes.h" | 34 #include "core/loader/FrameLoaderTypes.h" |
| 34 #include "core/page/FrameTree.h" | 35 #include "core/page/FrameTree.h" |
| 35 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 36 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 37 | 38 |
| 38 namespace blink { | 39 namespace blink { |
| 39 | 40 |
| 40 class ChromeClient; | 41 class ChromeClient; |
| 41 class DOMWindow; | 42 class DOMWindow; |
| 42 class DOMWrapperWorld; | 43 class DOMWrapperWorld; |
| 43 class Document; | 44 class Document; |
| 44 class FrameClient; | 45 class FrameClient; |
| 45 class FrameHost; | 46 class FrameHost; |
| 46 class FrameOwner; | |
| 47 class HTMLFrameOwnerElement; | 47 class HTMLFrameOwnerElement; |
| 48 class LayoutPart; | 48 class LayoutPart; |
| 49 class KURL; | 49 class KURL; |
| 50 class Page; | 50 class Page; |
| 51 class SecurityContext; | 51 class SecurityContext; |
| 52 class Settings; | 52 class Settings; |
| 53 class WindowProxy; | 53 class WindowProxy; |
| 54 class WindowProxyManager; | 54 class WindowProxyManager; |
| 55 struct FrameLoadRequest; | 55 struct FrameLoadRequest; |
| 56 | 56 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 { | 164 { |
| 165 return m_treeNode; | 165 return m_treeNode; |
| 166 } | 166 } |
| 167 | 167 |
| 168 // Allow equality comparisons of Frames by reference or pointer, interchangeably
. | 168 // Allow equality comparisons of Frames by reference or pointer, interchangeably
. |
| 169 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) | 169 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) |
| 170 | 170 |
| 171 } // namespace blink | 171 } // namespace blink |
| 172 | 172 |
| 173 #endif // Frame_h | 173 #endif // Frame_h |
| OLD | NEW |