| 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 12 matching lines...) Expand all Loading... |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef FrameView_h | 25 #ifndef FrameView_h |
| 26 #define FrameView_h | 26 #define FrameView_h |
| 27 | 27 |
| 28 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 29 #include "core/dom/DocumentLifecycle.h" | 29 #include "core/dom/DocumentLifecycle.h" |
| 30 #include "core/frame/FrameViewAutoSizeInfo.h" | 30 #include "core/frame/FrameViewAutoSizeInfo.h" |
| 31 #include "core/frame/LayoutSubtreeRootList.h" | 31 #include "core/frame/LayoutSubtreeRootList.h" |
| 32 #include "core/frame/RootFrameViewport.h" | 32 #include "core/frame/RootFrameViewport.h" |
| 33 #include "core/layout/LayoutAnalyzer.h" | |
| 34 #include "core/layout/ScrollAnchor.h" | 33 #include "core/layout/ScrollAnchor.h" |
| 35 #include "core/layout/api/LayoutViewItem.h" | 34 #include "core/layout/api/LayoutViewItem.h" |
| 36 #include "core/paint/PaintInvalidationCapableScrollableArea.h" | 35 #include "core/paint/PaintInvalidationCapableScrollableArea.h" |
| 37 #include "core/paint/PaintPhase.h" | 36 #include "core/paint/PaintPhase.h" |
| 38 #include "platform/RuntimeEnabledFeatures.h" | 37 #include "platform/RuntimeEnabledFeatures.h" |
| 39 #include "platform/Widget.h" | 38 #include "platform/Widget.h" |
| 40 #include "platform/geometry/IntRect.h" | 39 #include "platform/geometry/IntRect.h" |
| 41 #include "platform/geometry/LayoutRect.h" | 40 #include "platform/geometry/LayoutRect.h" |
| 42 #include "platform/graphics/Color.h" | 41 #include "platform/graphics/Color.h" |
| 43 #include "platform/graphics/paint/ClipPaintPropertyNode.h" | 42 #include "platform/graphics/paint/ClipPaintPropertyNode.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 61 class ComputedStyle; | 60 class ComputedStyle; |
| 62 class DocumentLifecycle; | 61 class DocumentLifecycle; |
| 63 class Cursor; | 62 class Cursor; |
| 64 class Element; | 63 class Element; |
| 65 class FloatSize; | 64 class FloatSize; |
| 66 class HTMLFrameOwnerElement; | 65 class HTMLFrameOwnerElement; |
| 67 class LayoutPart; | 66 class LayoutPart; |
| 68 class LocalFrame; | 67 class LocalFrame; |
| 69 class KURL; | 68 class KURL; |
| 70 class Node; | 69 class Node; |
| 70 class LayoutAnalyzer; |
| 71 class LayoutBox; | 71 class LayoutBox; |
| 72 class LayoutEmbeddedObject; | 72 class LayoutEmbeddedObject; |
| 73 class LayoutObject; | 73 class LayoutObject; |
| 74 class LayoutReplaced; | 74 class LayoutReplaced; |
| 75 class LayoutScrollbarPart; | 75 class LayoutScrollbarPart; |
| 76 class LayoutView; | 76 class LayoutView; |
| 77 class PaintInvalidationState; | 77 class PaintInvalidationState; |
| 78 class Page; | 78 class Page; |
| 79 class ScrollingCoordinator; | 79 class ScrollingCoordinator; |
| 80 class TracedValue; | 80 class TracedValue; |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) | 936 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) |
| 937 setIsVisuallyNonEmpty(); | 937 setIsVisuallyNonEmpty(); |
| 938 } | 938 } |
| 939 | 939 |
| 940 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); | 940 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); |
| 941 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF
rameView(), scrollableArea.isFrameView()); | 941 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF
rameView(), scrollableArea.isFrameView()); |
| 942 | 942 |
| 943 } // namespace blink | 943 } // namespace blink |
| 944 | 944 |
| 945 #endif // FrameView_h | 945 #endif // FrameView_h |
| OLD | NEW |