OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 (C) 1998 Waldo Bastian (bastian@kde.org) | 3 (C) 1998 Waldo Bastian (bastian@kde.org) |
4 (C) 1998, 1999 Torben Weis (weis@kde.org) | 4 (C) 1998, 1999 Torben Weis (weis@kde.org) |
5 (C) 1999 Lars Knoll (knoll@kde.org) | 5 (C) 1999 Lars Knoll (knoll@kde.org) |
6 (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
8 | 8 |
9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 class FloatSize; | 43 class FloatSize; |
44 class FrameActionScheduler; | 44 class FrameActionScheduler; |
45 class KURL; | 45 class KURL; |
46 class Node; | 46 class Node; |
47 class Page; | 47 class Page; |
48 class RenderBox; | 48 class RenderBox; |
49 class RenderEmbeddedObject; | 49 class RenderEmbeddedObject; |
50 class RenderLayer; | 50 class RenderLayer; |
51 class RenderObject; | 51 class RenderObject; |
52 class RenderScrollbarPart; | 52 class RenderScrollbarPart; |
| 53 class RenderStyle; |
53 | 54 |
54 Pagination::Mode paginationModeForRenderStyle(RenderStyle*); | 55 Pagination::Mode paginationModeForRenderStyle(RenderStyle*); |
55 | 56 |
56 typedef unsigned long long DOMTimeStamp; | 57 typedef unsigned long long DOMTimeStamp; |
57 | 58 |
58 class FrameView : public ScrollView { | 59 class FrameView : public ScrollView { |
59 public: | 60 public: |
60 friend class RenderView; | 61 friend class RenderView; |
61 friend class Internals; | 62 friend class Internals; |
62 | 63 |
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 ASSERT(!widget || widget->isFrameView()); | 607 ASSERT(!widget || widget->isFrameView()); |
607 return static_cast<const FrameView*>(widget); | 608 return static_cast<const FrameView*>(widget); |
608 } | 609 } |
609 | 610 |
610 // This will catch anyone doing an unnecessary cast. | 611 // This will catch anyone doing an unnecessary cast. |
611 void toFrameView(const FrameView*); | 612 void toFrameView(const FrameView*); |
612 | 613 |
613 } // namespace WebCore | 614 } // namespace WebCore |
614 | 615 |
615 #endif // FrameView_h | 616 #endif // FrameView_h |
OLD | NEW |