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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 void performPostLayoutTasks(); | 588 void performPostLayoutTasks(); |
589 | 589 |
590 void invalidateTreeIfNeeded(); | 590 void invalidateTreeIfNeeded(); |
591 | 591 |
592 void gatherDebugLayoutRects(RenderObject* layoutRoot); | 592 void gatherDebugLayoutRects(RenderObject* layoutRoot); |
593 | 593 |
594 DocumentLifecycle& lifecycle() const; | 594 DocumentLifecycle& lifecycle() const; |
595 | 595 |
596 void contentRectangleForPaintInvalidation(const IntRect&); | 596 void contentRectangleForPaintInvalidation(const IntRect&); |
597 virtual void contentsResized() override; | 597 virtual void contentsResized() override; |
598 void scrollbarExistenceDidChange(); | 598 void scrollbarNeedsLayout(); |
599 | 599 |
600 // Override Widget methods to do point conversion via renderers, in order to | 600 // Override Widget methods to do point conversion via renderers, in order to |
601 // take transforms into account. | 601 // take transforms into account. |
602 virtual IntRect convertToContainingView(const IntRect&) const override; | 602 virtual IntRect convertToContainingView(const IntRect&) const override; |
603 virtual IntRect convertFromContainingView(const IntRect&) const override; | 603 virtual IntRect convertFromContainingView(const IntRect&) const override; |
604 virtual IntPoint convertToContainingView(const IntPoint&) const override; | 604 virtual IntPoint convertToContainingView(const IntPoint&) const override; |
605 virtual IntPoint convertFromContainingView(const IntPoint&) const override; | 605 virtual IntPoint convertFromContainingView(const IntPoint&) const override; |
606 | 606 |
607 void updateWidgetPositionsIfNeeded(); | 607 void updateWidgetPositionsIfNeeded(); |
608 | 608 |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 } | 827 } |
828 | 828 |
829 private: | 829 private: |
830 RawPtrWillBeMember<FrameView> m_view; | 830 RawPtrWillBeMember<FrameView> m_view; |
831 bool m_originalValue; | 831 bool m_originalValue; |
832 }; | 832 }; |
833 | 833 |
834 } // namespace blink | 834 } // namespace blink |
835 | 835 |
836 #endif // FrameView_h | 836 #endif // FrameView_h |
OLD | NEW |