| 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 | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 9 * reserved. | 9 * reserved. |
| 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #ifndef Frame_h | 29 #ifndef Frame_h |
| 30 #define Frame_h | 30 #define Frame_h |
| 31 | 31 |
| 32 #include "core/CoreExport.h" | 32 #include "core/CoreExport.h" |
| 33 #include "core/frame/FrameLifecycle.h" | 33 #include "core/frame/FrameLifecycle.h" |
| 34 #include "core/frame/FrameTypes.h" | 34 #include "core/frame/FrameTypes.h" |
| 35 #include "core/loader/FrameLoaderTypes.h" | 35 #include "core/loader/FrameLoaderTypes.h" |
| 36 #include "core/page/FrameTree.h" | 36 #include "core/page/FrameTree.h" |
| 37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
| 38 #include "platform/wtf/Forward.h" |
| 38 #include "public/platform/WebFeaturePolicy.h" | 39 #include "public/platform/WebFeaturePolicy.h" |
| 39 #include "wtf/Forward.h" | |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class ChromeClient; | 43 class ChromeClient; |
| 44 class DOMWindow; | 44 class DOMWindow; |
| 45 class DOMWrapperWorld; | 45 class DOMWrapperWorld; |
| 46 class Document; | 46 class Document; |
| 47 class FrameClient; | 47 class FrameClient; |
| 48 class FrameOwner; | 48 class FrameOwner; |
| 49 class HTMLFrameOwnerElement; | 49 class HTMLFrameOwnerElement; |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 return tree_node_; | 187 return tree_node_; |
| 188 } | 188 } |
| 189 | 189 |
| 190 // Allow equality comparisons of Frames by reference or pointer, | 190 // Allow equality comparisons of Frames by reference or pointer, |
| 191 // interchangeably. | 191 // interchangeably. |
| 192 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES(Frame) | 192 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES(Frame) |
| 193 | 193 |
| 194 } // namespace blink | 194 } // namespace blink |
| 195 | 195 |
| 196 #endif // Frame_h | 196 #endif // Frame_h |
| OLD | NEW |