| 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 WebDisplayMode m_displayMode; | 775 WebDisplayMode m_displayMode; |
| 776 | 776 |
| 777 bool m_doFullPaintInvalidation; | 777 bool m_doFullPaintInvalidation; |
| 778 | 778 |
| 779 bool m_canHaveScrollbars; | 779 bool m_canHaveScrollbars; |
| 780 | 780 |
| 781 bool m_hasPendingLayout; | 781 bool m_hasPendingLayout; |
| 782 LayoutSubtreeRootList m_layoutSubtreeRootList; | 782 LayoutSubtreeRootList m_layoutSubtreeRootList; |
| 783 | 783 |
| 784 bool m_layoutSchedulingEnabled; | 784 bool m_layoutSchedulingEnabled; |
| 785 bool m_inPerformLayout; | |
| 786 bool m_inSynchronousPostLayout; | 785 bool m_inSynchronousPostLayout; |
| 787 int m_layoutCount; | 786 int m_layoutCount; |
| 788 unsigned m_nestedLayoutCount; | 787 unsigned m_nestedLayoutCount; |
| 789 Timer<FrameView> m_postLayoutTasksTimer; | 788 Timer<FrameView> m_postLayoutTasksTimer; |
| 790 Timer<FrameView> m_updateWidgetsTimer; | 789 Timer<FrameView> m_updateWidgetsTimer; |
| 791 OwnPtr<CancellableTaskFactory> m_intersectionObserverNotificationFactory; | 790 OwnPtr<CancellableTaskFactory> m_intersectionObserverNotificationFactory; |
| 792 | 791 |
| 793 bool m_firstLayout; | 792 bool m_firstLayout; |
| 794 bool m_isTransparent; | 793 bool m_isTransparent; |
| 795 Color m_baseBackgroundColor; | 794 Color m_baseBackgroundColor; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 static const unsigned visualPixelThreshold = 32 * 32; | 920 static const unsigned visualPixelThreshold = 32 * 32; |
| 922 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) | 921 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) |
| 923 setIsVisuallyNonEmpty(); | 922 setIsVisuallyNonEmpty(); |
| 924 } | 923 } |
| 925 | 924 |
| 926 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); | 925 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); |
| 927 | 926 |
| 928 } // namespace blink | 927 } // namespace blink |
| 929 | 928 |
| 930 #endif // FrameView_h | 929 #endif // FrameView_h |
| OLD | NEW |