| 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 "AdjustViewSizeOrNot.h" | 31 #include "AdjustViewSizeOrNot.h" |
| 32 #include "DragImage.h" | |
| 33 #include "FrameLoader.h" | 32 #include "FrameLoader.h" |
| 34 #include "FrameTree.h" | 33 #include "FrameTree.h" |
| 35 #include "NavigationScheduler.h" | 34 #include "NavigationScheduler.h" |
| 36 #include "ScrollTypes.h" | 35 #include "core/platform/DragImage.h" |
| 36 #include "core/platform/ScrollTypes.h" |
| 37 #include "core/platform/graphics/IntRect.h" | 37 #include "core/platform/graphics/IntRect.h" |
| 38 #include <wtf/RefCounted.h> | 38 #include <wtf/RefCounted.h> |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 class AnimationController; | 42 class AnimationController; |
| 43 class Color; | 43 class Color; |
| 44 class Document; | 44 class Document; |
| 45 class Editor; | 45 class Editor; |
| 46 class Element; | 46 class Element; |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 } | 275 } |
| 276 | 276 |
| 277 inline EventHandler* Frame::eventHandler() const | 277 inline EventHandler* Frame::eventHandler() const |
| 278 { | 278 { |
| 279 return m_eventHandler.get(); | 279 return m_eventHandler.get(); |
| 280 } | 280 } |
| 281 | 281 |
| 282 } // namespace WebCore | 282 } // namespace WebCore |
| 283 | 283 |
| 284 #endif // Frame_h | 284 #endif // Frame_h |
| OLD | NEW |