Home | History | Annotate | Download | only in compositing

Lines Matching defs:frameView

32 #include "core/frame/FrameView.h"
189 for (Frame* child = m_renderView.frameView()->frame().tree().firstChild(); child; child = child->tree().nextSibling()) {
215 for (Frame* child = m_renderView.frameView()->frame().tree().firstChild(); child; child = child->tree().nextSibling()) {
232 // FIXME: Technically we only need to do this when the FrameView's
349 if (const FrameView::ScrollableAreaSet* scrollableAreas = m_renderView.frameView()->scrollableAreas()) {
350 for (FrameView::ScrollableAreaSet::iterator it = scrollableAreas->begin(); it != scrollableAreas->end(); ++it)
432 scrollingCoordinator->frameViewRootLayerDidChange(m_renderView.frameView());
479 scrollingCoordinator->frameViewFixedObjectsDidChange(m_renderView.frameView());
508 FrameView* frameView = m_renderView.frameView();
509 m_containerLayer->setSize(frameView->unscaledVisibleContentSize());
510 m_overflowControlsHostLayer->setSize(frameView->unscaledVisibleContentSize(IncludeScrollbars));
526 FrameView* frameView = m_renderView.frameView();
527 IntPoint scrollPosition = frameView->scrollPosition();
536 scrollingCoordinatorHandlesOffset = scrollingCoordinator->scrollableAreaScrollLayerDidChange(frameView);
544 m_scrollLayer->setPosition(-frameView->minimumScrollPosition());
608 return m_renderView.frameView()->trackedPaintInvalidationRectsAsText() + layerTreeText;
733 FrameView* frameView = m_renderView.frameView();
734 m_containerLayer->setSize(frameView->unscaledVisibleContentSize());
735 m_overflowControlsHostLayer->setSize(frameView->unscaledVisibleContentSize(IncludeScrollbars));
799 paintScrollbar(m_renderView.frameView()->horizontalScrollbar(), context, clip);
801 paintScrollbar(m_renderView.frameView()->verticalScrollbar(), context, clip);
803 const IntRect& scrollCorner = m_renderView.frameView()->scrollCornerRect();
808 m_renderView.frameView()->paintScrollCorner(&context, transformedClip);
878 static bool shouldCompositeOverflowControls(FrameView* view)
891 FrameView* view = m_renderView.frameView();
897 FrameView* view = m_renderView.frameView();
903 FrameView* view = m_renderView.frameView();
932 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView.frameView(), HorizontalScrollbar);
939 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView.frameView(), HorizontalScrollbar);
951 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView.frameView(), VerticalScrollbar);
958 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView.frameView(), VerticalScrollbar);
971 m_renderView.frameView()->positionScrollbarLayers();
1047 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView.frameView(), HorizontalScrollbar);
1048 if (Scrollbar* horizontalScrollbar = m_renderView.frameView()->verticalScrollbar())
1049 m_renderView.frameView()->invalidateScrollbar(horizontalScrollbar, IntRect(IntPoint(0, 0), horizontalScrollbar->frameRect().size()));
1056 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView.frameView(), VerticalScrollbar);
1057 if (Scrollbar* verticalScrollbar = m_renderView.frameView()->verticalScrollbar())
1058 m_renderView.frameView()->invalidateScrollbar(verticalScrollbar, IntRect(IntPoint(0, 0), verticalScrollbar->frameRect().size()));
1063 m_renderView.frameView()->invalidateScrollCorner(m_renderView.frameView()->scrollCornerRect());
1086 LocalFrame& frame = m_renderView.frameView()->frame();
1125 LocalFrame& frame = m_renderView.frameView()->frame();
1161 return m_renderView.frameView()->frame().page();